Untitled
unknown
plain_text
3 years ago
598 B
18
Indexable
- alias: "Accensione automatico bagno in camera"
id: 'accensione_automatico_luci_bagno_camera'
trigger:
- platform: state
entity_id: binary_sensor.lumi_lumi_motion_ac02_iaszone_2
to: 'on'
condition:
- condition: sun
after: sunset
- condition: time
after: '23:00:00'
before: '04:00:00'
action:
- service: light.turn_on
target:
entity_id: light.luce_bagno_in_camera
data:
brightness_pct: >
{% if now().hour >= 23 or now().hour < 4 %}
50
{% else %}
100
{% endif %}
Editor is loading...