Essential_load2_Extra / Essential_load5_Extra #675
EddieSpaghettie
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
essential_load2_extra: sensor.pool_max_temp_today
essential_load5_extra: sensor.geyser_status
Can this be Templated please?
When my pool pump is on it must show the daily temp increase and when off it must show the current temp
Geyser when off It shows the temp and when on it must show the geyser wattage output
If possible. Would be very cool.
Thanks in advance
using this :
unique_id: sensor.geyser_status
state: >
{% if is_state('switch.sonoff_100186ded0', 'on') %} # Sonoff Switch to turn geyser on and off
{{ states('number.sgc_geyser_power') }}% # geyser power in percentage 0-100
{% else %}
{{ states('sensor.sonoff_1001842096_temperature') }}°C # geyser temp
{% endif %}
Beta Was this translation helpful? Give feedback.
All reactions