Skip to content
Snippets Groups Projects
Commit 52b3b5c7 authored by Jan Grewe's avatar Jan Grewe
Browse files

NFG: export temperature/humidity limits for fan as metrics (waiting for upstream)

parent cd17c0a3
No related branches found
No related tags found
No related merge requests found
......@@ -67,6 +67,38 @@ sensor:
name: "Water Temperature"
accuracy_decimals: 2
# requires: https://github.com/esphome/feature-requests/issues/1746
# - platform: template
# id: sensor_temperature_max
# name: "temperature_max"
# lambda: return atoi(id(temperature_max).state.c_str());
# internal: true
# - platform: template
# id: sensor_temperature_hysteresis
# name: "temperature_max"
# lambda: return atoi(id(temperature_hysteresis).state.c_str());
# internal: true
# - platform: template
# id: sensor_temperature_min
# name: "temperature_max"
# lambda: return atoi(id(temperature_min).state.c_str());
# internal: true
# - platform: template
# id: sensor_humidity_max
# name: "humidity_max"
# lambda: return atoi(id(humidity_max).state.c_str());
# internal: true
# - platform: template
# id: sensor_humidity_hysteresis
# name: "humidity_max"
# lambda: return atoi(id(humidity_hysteresis).state.c_str());
# internal: true
# - platform: template
# id: sensor_humidity_min
# name: "humidity_max"
# lambda: return atoi(id(humidity_min).state.c_str());
# internal: true
select:
- platform: template
id: schedule
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment