Advertisement
asyscom

Untitled

Jan 30th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.67 KB | None | 0 0
  1. - alias: Riscaldamento giorno
  2.   trigger:
  3.     - platform: time
  4.       at: 05:30:00
  5.     - platform: homeassistant
  6.       event: start
  7.   condition:
  8.     condition: time
  9.     after: 05:30:00
  10.     before: 21:00:00
  11.   action:
  12.     service: climate.set_temperature
  13.     entity_id: sensor.temperature_158d0002b549f4
  14.     data:
  15.       temperature: 21
  16. - alias: Riscaldamento notte
  17.   trigger:
  18.     - platform: time
  19.       at: 21:00:00
  20.     - platform: homeassistant
  21.       event: start
  22.   condition:
  23.     condition: time
  24.     after: 21:00:00
  25.     before: 05:30:00
  26.   action:
  27.     service: climate.set_temperature
  28.     entity_id: sensor.temperature_158d0002b549f4
  29.     data:
  30.      temperature: 17
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement