EsLint
This commit is contained in:
19
types/analogInput.ts
Normal file
19
types/analogInput.ts
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user