Add professional historian modal with realtime analytics

This commit is contained in:
litoral05
2026-05-22 17:08:22 +01:00
parent a30d41d031
commit 6277653fed
9 changed files with 1705 additions and 44 deletions
+16
View File
@@ -0,0 +1,16 @@
export type ModuleSensorResponse = {
sensorId: number;
name: string;
key: string;
value: unknown;
unit: string | null;
modbusAddress: number;
bitOffset: number | null;
timestamp: string;
};
export type MeteoModuleResponse = {
timestamp: string;
sensorCount: number;
sensors: ModuleSensorResponse[];
};