Skip to content

Commit

Permalink
Add TURN_ON/OFF ClimateEntityFeature for Balboa (#109139)
Browse files Browse the repository at this point in the history
  • Loading branch information
gjohansson-ST committed Jan 30, 2024
1 parent b4c0e52 commit 7827f7b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion homeassistant/components/balboa/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ class BalboaClimateEntity(BalboaEntity, ClimateEntity):
_attr_icon = "mdi:hot-tub"
_attr_hvac_modes = [HVACMode.HEAT, HVACMode.OFF]
_attr_supported_features = (
ClimateEntityFeature.TARGET_TEMPERATURE | ClimateEntityFeature.PRESET_MODE
ClimateEntityFeature.TARGET_TEMPERATURE
| ClimateEntityFeature.PRESET_MODE
| ClimateEntityFeature.TURN_OFF
| ClimateEntityFeature.TURN_ON
)
_attr_translation_key = DOMAIN
_attr_name = None
Expand Down

0 comments on commit 7827f7b

Please sign in to comment.