А сюда можно нубские вопросы писать? вроде того что я хочу светильник на кухне включать по движению только начиная со времени час до заката
- alias: 'Turn on kitchen light by the Sun'
trigger:
- platform: sun
event: sunset
offset: '-01:00:00'
- platform: state
entity_id: binary_sensor.0x00158d0002fd3371_occupancy
to: 'on'
condition:
- condition: state
entity_id: light.xiaomi_philips_smart_led_ball
state: 'off'
action:
- service: light.turn_on
entity_id: light.xiaomi_philips_smart_led_ball
А днём мне включение света не нужно и приходится создавать такую штуку:
- alias: 'Disable kitchen light after sunrise'
trigger:
- platform: sun
event: sunrise
offset: "01:00:00"
action:
service: homeassistant.turn_off
entity_id: automation.turn_on_kitchen_light_by_the_sun
Собственно вопрос - это я прямо костыль накостылил, можно же изящнее?