This repository has been archived on 2023-06-10. You can view files and clone it, but cannot push or open issues or pull requests.
homeassistant-config/packages/light/night.yaml
darthsandmann a6b5f3714a fixes
2022-08-08 23:30:39 +02:00

27 lines
654 B
YAML

input_boolean:
lights_needed:
name: Lights needed
initial: false
automation:
- alias: lights_needed
mode: single
trigger:
- platform: time_pattern
minutes: "10"
action:
- if:
- condition: or
conditions:
- condition: sun
after: sunset
- condition: sun
before: sunrise
then:
- service: input_boolean.turn_on
target:
entity_id: input_boolean.lights_needed
else:
- service: input_boolean.turn_off
target:
entity_id: input_boolean.lights_needed