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

29 lines
733 B
YAML
Raw Normal View History

2022-08-08 20:47:32 +00:00
input_boolean:
lights_needed:
name: Lights needed
initial: false
automation:
- alias: lights_needed
mode: single
trigger:
- platform: time_pattern
minutes: "10"
action:
- if:
2022-08-08 21:30:39 +00:00
- condition: or
conditions:
- condition: sun
after: sunset
2022-08-08 21:33:55 +00:00
after_offset: "-01:00"
2022-08-08 21:30:39 +00:00
- condition: sun
before: sunrise
2022-08-08 21:33:55 +00:00
before_offset: "+01:00"
2022-08-08 20:47:32 +00:00
then:
- service: input_boolean.turn_on
target:
2022-08-08 20:49:12 +00:00
entity_id: input_boolean.lights_needed
2022-08-08 20:47:32 +00:00
else:
- service: input_boolean.turn_off
target:
2022-08-08 20:49:12 +00:00
entity_id: input_boolean.lights_needed