Does anyone know how to switch off my Innr smart bulb ?
I’ve tried everything but nothing works:
- alias: "Innr RB 272T: uit wanneer test uit is"
id: innr_rb_272t_off_when_test_off
trigger:
- platform: state
entity_id: input_boolean.test
to: "off"
action:
- service: light.turn_off
target:
entity_id: light.innr_rb_272_t
mode: single
- alias: "Innr RB 272T: uit wanneer test uit is"
id: innr_rb_272t_off_when_test_off
triggers:
- trigger: state
entity_id: input_boolean.test
to: "off"
actions:
- action: light.turn_off
target:
entity_id: light.innr_rb_272_t
mode: single
And look in here to make sure these entities exist. input_boolean.test light.innr_rb_272_t
And also using LLM’s to write code for you is not helping you.
Another thing you may be doing is hit the run in the UI editor to test this. Run doesn’t use the trigger at all.
You need to save the automation then change the state if the test entity to trigger this.