mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 15:12:06 +00:00 
			
		
		
		
	Fix for two points setting when fan_only_cooling is disabled (#2903)
Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io> Co-authored-by: Keith Burzinski <kburzinski@kbx-mbp2021.ad.kbx81.net>
This commit is contained in:
		| @@ -431,7 +431,8 @@ async def to_code(config): | ||||
|  | ||||
|     heat_cool_mode_available = CONF_HEAT_ACTION in config and CONF_COOL_ACTION in config | ||||
|     two_points_available = CONF_HEAT_ACTION in config and ( | ||||
|         CONF_COOL_ACTION in config or CONF_FAN_ONLY_ACTION in config | ||||
|         CONF_COOL_ACTION in config | ||||
|         or (config[CONF_FAN_ONLY_COOLING] and CONF_FAN_ONLY_ACTION in config) | ||||
|     ) | ||||
|  | ||||
|     sens = await cg.get_variable(config[CONF_SENSOR]) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user