Home Assistant YAML Stuff

From Michael's Information Zone
Revision as of 07:47, 31 August 2021 by Michael.mast (talk | contribs) (Created page with "==Sensors== Needed to pull temp data from sensor outside, set to integer, then add 1 to keep indoor temps 1 degree warmer than outside (with exceptions) <pre> service: climate...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Sensors

Needed to pull temp data from sensor outside, set to integer, then add 1 to keep indoor temps 1 degree warmer than outside (with exceptions)

service: climate.set_temperature
target:
  device_id: f6e8899050f8b2be064b49cdd503caa9
  entity_id: climate.centralite_thermostat_015a2d0b_fan_thermostat
data_template:
  temperature: '{{states(''sensor.lumi_lumi_weather_temperature'') | int + 1 }}'