Advertisement
kneival

Untitled

Sep 28th, 2023
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. sensor:
  2. - platform: template
  3. sensors:
  4. solcast_today:
  5. friendly_name: 'Solcast Forecast Today'
  6. value_template: >
  7. {% set timestamp = as_timestamp(now()) + 86400 %}
  8. Today - {{ states('sensor.solcast_forecast_today') | round(0) }} kWh
  9.  
  10. solcast_day_2:
  11. friendly_name: 'Solcast Forecast Day 2'
  12. value_template: >
  13. {% set timestamp = as_timestamp(now()) + 86400 %}
  14. {{ timestamp | timestamp_custom('%A', true) }} - {{ states('sensor.solcast_forecast_tomorrow') | round(0) }} kWh
  15.  
  16. solcast_day_3:
  17. friendly_name: 'Solcast Forecast Day 3'
  18. value_template: >
  19. {% set timestamp = as_timestamp(now()) + 172800 %}
  20. {{ timestamp | timestamp_custom('%A', true) }} - {{ states('sensor.solcast_forecast_d3') | round(0) }} kWh
  21.  
  22. solcast_day_4:
  23. friendly_name: 'Solcast Forecast Day 4'
  24. value_template: >
  25. {% set timestamp = as_timestamp(now()) + 259200 %}
  26. {{ timestamp | timestamp_custom('%A', true) }} - {{ states('sensor.solcast_forecast_d4') | round(0) }} kWh
  27.  
  28. solcast_day_5:
  29. friendly_name: 'Solcast Forecast Day 5'
  30. value_template: >
  31. {% set timestamp = as_timestamp(now()) + 345600 %}
  32. {{ timestamp | timestamp_custom('%A', true) }} - {{ states('sensor.solcast_forecast_d5') | round(0) }} kWh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement