This commit is contained in:
Ismail Ali
2025-06-26 22:55:26 +02:00
parent 8b3280da0a
commit 137839da98
15 changed files with 3604 additions and 44 deletions

19
types/analogInput.ts Normal file
View File

@@ -0,0 +1,19 @@
// types/analogInput.ts
export interface AnalogInput {
id: number;
label: string;
unit?: string;
value: number;
// Schwellenwerte (Statusflags)
isUnderWarning?: boolean;
isUnderLimit?: boolean;
isOverWarning?: boolean;
isOverLimit?: boolean;
// Erweiterbar für spätere Charts
offset?: number;
factor?: number;
loggerInterval?: number;
weighting?: number;
}