Add fan off mode to the supported fan modes to fujitsu_fglair (#149277)

This commit is contained in:
Antoine Reversat 2025-07-23 08:52:14 -04:00 committed by Franck Nijhof
parent 60f4d29d60
commit 4c8ab8eb64
No known key found for this signature in database
GPG Key ID: AB33ADACE7101952

View File

@ -15,6 +15,7 @@ from homeassistant.components.climate import (
FAN_HIGH,
FAN_LOW,
FAN_MEDIUM,
FAN_OFF,
SWING_BOTH,
SWING_HORIZONTAL,
SWING_OFF,
@ -31,6 +32,7 @@ from .coordinator import FGLairConfigEntry, FGLairCoordinator
from .entity import FGLairEntity
HA_TO_FUJI_FAN = {
FAN_OFF: FanSpeed.QUIET,
FAN_LOW: FanSpeed.LOW,
FAN_MEDIUM: FanSpeed.MEDIUM,
FAN_HIGH: FanSpeed.HIGH,