I want to make a timer, to set on daily a Lamp on 10:30 and out on 21:30 (european time 24h)
I have a zwave switch Blauw licht Zeeaquarium
On automations i dit this:
alias: Zeeaquarium blauw aan
description: Zeeaquarium blauw licht aan en uit.
trigger:
- platform: time
id: 'on'
at: '10:30'
- platform: time
id: 'off'
at: '22:30'
condition: []
action:
- choose:
- conditions:
- condition: trigger
id: 'on'
sequence:
- type: turn_on
device_id: 1adeba502dbd426ae1404a10ddff2f0a
entity_id: switch.switch_meter_plugin
domain: switch
- conditions:
- condition: trigger
id: 'off'
sequence:
- type: turn_off
device_id: 1adeba502dbd426ae1404a10ddff2f0a
entity_id: switch.switch_meter_plugin
domain: switch
default: []
mode: single
Too bad, nothing happens.