I just got a enbrighten zwave led bulb. I can see when i adjust the level in the the gui that the brightness property is what changes. I’ve tried to format it several ways based on examples in the forums, etc.
this works to turn off
- alias: Turn off at xx:xxPM
trigger:
- platform: time
at: '22:38'
action:
service: homeassistant.turn_off
entity_id: light.level
this shows the bulb on but the brightness is 0.
- alias: Turn on at xx:xxPM
trigger:
- platform: time
at: '22:38'
action:
service: homeassistant.turn_on
entity_id: light.level
this gives me an errors like this
2017-09-18 22:57:59 ERROR (SyncWorker_3) [homeassistant.util.yaml] mapping values are not allowed here
in “/config/automations.yaml”, line 44, column 9
2017-09-18 22:57:59 ERROR (MainThread) [homeassistant.components.automation] mapping values are not allowed here
in “/config/automations.yaml”, line 44, column 9
- alias: Turn at xx:xxPM
trigger:
- platform: time
at: '22:38'
action:
service: homeassistant.turn_on
data:
entity_id: light.level
brightness: 25