This commit is contained in:
Ismail Ali
2025-06-26 22:56:20 +02:00
parent 137839da98
commit b9651a53a9
82 changed files with 7476 additions and 4171 deletions

View File

@@ -4,16 +4,22 @@ export interface AnalogInput {
label: string;
unit?: string;
value: number;
name: string;
// Schwellenwerte (Statusflags)
// Statusflags
isUnderWarning?: boolean;
isUnderLimit?: boolean;
isOverWarning?: boolean;
isOverLimit?: boolean;
// Erweiterbar für spätere Charts
// Weitere optionale Felder
offset?: number;
factor?: number;
loggerInterval?: number;
weighting?: number;
// Zusätzliche Felder im Slice
uW?: boolean;
uG?: boolean;
oW?: boolean;
oG?: boolean;
}

6
types/digitalOutput.ts Normal file
View File

@@ -0,0 +1,6 @@
// /types/digitalOutput.ts
export interface DigitalOutput {
id: number;
label: string;
status: boolean;
}