Skip to content

Commit

Permalink
support both HEAT and COOL mode
Browse files Browse the repository at this point in the history
  • Loading branch information
muchasuerte committed Oct 30, 2023
1 parent 2786a6e commit a62a3d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/versatile_thermostat/base_thermostat.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ def post_init(self, entry_infos):
self._presence_on = self._presence_sensor_entity_id is not None

if self._ac_mode:
self._hvac_list = [HVACMode.COOL, HVACMode.OFF]
self._hvac_list = [HVACMode.HEAT, HVACMode.COOL, HVACMode.OFF]
else:
self._hvac_list = [HVACMode.HEAT, HVACMode.OFF]

Expand Down

0 comments on commit a62a3d1

Please sign in to comment.