Added basic hue light bridge, improved Timeout trait and setup frontdoor to turn on hallway ligh temporarily
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-08-15 04:45:35 +02:00
parent c584fa014c
commit bb131f2b1a
8 changed files with 211 additions and 20 deletions

View File

@@ -79,10 +79,18 @@ topic = "zigbee2mqtt/living/remote"
mixer = "living_mixer"
speakers = "living_speakers"
[devices.hallway_light]
type = "HueLight"
ip = "10.0.0.146"
login = "${HUE_TOKEN}"
light_id = 16
timer_id = 1
[devices.hallway_frontdoor]
type = "ContactSensor"
topic = "zigbee2mqtt/hallway/frontdoor"
presence = { timeout = 900 }
lights = { lights = ["hallway_light"], timeout = 60 }
[devices.bathroom_washer]
type = "Washer"

View File

@@ -79,11 +79,18 @@ topic = "zigbee2mqtt/living/remote"
mixer = "living_mixer"
speakers = "living_speakers"
[devices.hallway_light]
type = "HueLight"
ip = "10.0.0.146"
login = "${HUE_TOKEN}"
light_id = 16
timer_id = 1
[devices.hallway_frontdoor]
type = "ContactSensor"
topic = "zigbee2mqtt/hallway/frontdoor"
presence = { timeout = 10 }
lights = { lights = ["bathroom_light"], timeout = 10 }
lights = { lights = ["hallway_light"], timeout = 10 }
[devices.bathroom_washer]
type = "Washer"