Advertisement
Guest User

Home Assistant - nordpool price less than 5c automation

a guest
May 3rd, 2023
474
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. - id: turn_on_water_boiler
  2. alias: Turn on water boiler
  3. description: Turns on water boiler when energy prices are less than 5c
  4. trigger:
  5. - platform: numeric_state
  6. entity_id: sensor.nordpool_kwh_fi_eur_3_10_01
  7. attribute: current_price
  8. below: 5
  9. condition:
  10. - condition: numeric_state
  11. entity_id: sensor.nordpool_kwh_fi_eur_3_10_01
  12. below: 5
  13. action:
  14. - service: switch.turn_on
  15. data: {}
  16. target:
  17. entity_id: switch.water_boiler
  18. mode: single
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement