fix real time garage door and add flush sensor to routines

This commit is contained in:
mohammad
2025-04-29 10:06:17 +03:00
parent c9c939c59f
commit ccce7bb671
21 changed files with 1435 additions and 140 deletions

View File

@ -17,6 +17,7 @@ enum DeviceType {
ThreeTouch,
GarageDoor,
WaterLeak,
NCPS,
DoorSensor,
Other,
}
@ -56,5 +57,6 @@ Map<String, DeviceType> devicesTypesMap = {
"2GT": DeviceType.TwoGang,
"3GT": DeviceType.ThreeGang,
'GD': DeviceType.GarageDoor,
'WL': DeviceType.WaterLeak
'WL': DeviceType.WaterLeak,
'NCPS': DeviceType.NCPS,
};