Skip to content

Heating boost

Nicolas Liaudat edited this page Sep 10, 2024 · 2 revisions

The heating boost parameter is only available for hassio.

It can be used to increase the heating temporary. As example when the weather forecast is below current outdoor temperature The following hassio automation increase the boost factor from 5% per minus degree :

	alias: Heating boost
	description: set heating boost factor if weather forecast needs to
	trigger:
	  - platform: time
		at: "09:00:00"
	  - platform: homeassistant
		event: start
	  - platform: time
		at: "23:00:00"
		enabled: false
	condition: []
	action:
	  - service: number.set_value
		metadata: {}
		data:
		  value: >
				{% if states('sensor.day_2_mean_temp') | int < states('sensor.outdoor_temperature') | int %}
				{{ 100 +(states('sensor.outdoor_temperature') | int - states('sensor.day_2_mean_temp') | int)*10/2}}
				{% else %}
				100
				{% endif -%}
		target:
		  entity_id: number.heating_boost_factor
	mode: single
Clone this wiki locally