alias: FurnaceFan
description: >-
Runs furnace fan if there is too large a temperature differential between
rooms
trigger:
- platform: numeric_state
entity_id: sensor.emmarmdiff
above: '1'
- platform: numeric_state
entity_id: sensor.emmarmdiff
below: '-1'
condition:
- condition: state
entity_id: binary_sensor.people_home
state: 'On'
action:
- data:
fan_mode: 'on'
entity_id: climate.living_room_thermostat
service: climate.set_fan_mode
mode: single
Other variations I’ve tried are to run it every 5 minutes with numeric value conditions and building out the equivalent of the emmarmdiff template sensor as template sensor. No dice.
At the end of the day, I want to have my furnace fan kick on to circulate air if the temperature differential between two particular temp sensors is greater than 1 degree, but only if at least one person is home.
binary_sensor.people_home works, reporting On when someone is home, and Off when nobody is home.