Skip to content

Commit

Permalink
airzone_cloud: climate: fix Homekit comment
Browse files Browse the repository at this point in the history
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
  • Loading branch information
Noltari committed Mar 13, 2024
1 parent 0f4566f commit 681967f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/airzone_cloud/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ def _initialize_fan_speeds(self) -> None:
if speed != 0:
fan_speeds[speed] = f"{int(round((speed * 100) / max_speed, 0))}%"

# Replace standard speeds for exposing via Alexa/Google/HomeKit
# Replace standard speeds for exposing via HomeKit
fan_speeds[1] = FAN_LOW
fan_speeds[int(round((max_speed + 1) / 2, 0))] = FAN_MEDIUM
fan_speeds[max_speed] = FAN_HIGH
Expand Down

0 comments on commit 681967f

Please sign in to comment.