lavva.exalushome.extalife
Version:
Library implementing communication and abstraction layers for ExtaLife API in ExalusHome system
29 lines (28 loc) • 704 B
TypeScript
export declare class WindAndBrightnessThresholds {
WindThreshold: WindThresholdStep;
BrightnessThreshold: BrightnessThresholdStep;
}
export declare enum WindThresholdStep {
Disabled = 0,
Speed15km_h = 1,
Speed21km_h = 2,
Speed28km_h = 3,
Speed36km_h = 4,
Speed45km_h = 5,
Speed55km_h = 6,
Speed66km_h = 7,
Speed78km_h = 8,
Speed91km_h = 9
}
export declare enum BrightnessThresholdStep {
Disabled = 0,
Brightness2000lux = 1,
Brightness5000lux = 2,
Brightness10000lux = 3,
Brightness20000lux = 4,
Brightness40000lux = 5,
Brightness60000lux = 6,
Brightness70000lux = 7,
Brightness80000lux = 8,
Brightness90000lux = 9
}