v0.9.1
What's Changed
- Add Example configurations by @swingerman in #71
- Openings:
openings:
- sensor.window1
- sensor.window2
- entity_id: binary_sensor.window3
timeout: 00:00:30 # cosnidered to be open if still open after 30 seconds
- Tolerances
The dual_smart_thermostat
has two tolerance variables: cold_tolerance
and hot_tolerance
. These variables are used to prevent the heater or cooler from switching on and off too frequently. For example, if the target temperature is 25 and the tolerance is 0.5 the heater will start when the sensor equals or goes below 24.5. The heater will stop when the sensor equals or goes above 25.5. This prevents the heater from switching on and off too frequently when the temperature is close to the target temperature.
If the thermosat is set to heat_cool mode the tolerance will work in the same way for both the heater and the cooler.
climate:
- platform: dual_smart_thermostat
name: Study
heater: switch.study_heater
cooler: switch.study_cooler
target_sensor: sensor.study_temperature
cold_tolerance: 0.3
hot_tolerance: 0
Full Changelog: v0.9.0...v0.9.1