Add number for ventilator's sleepTimer (#140972)

Add sleepTimer for ventilator

Co-authored-by: yunseon.park <yunseon.park@lge.com>
This commit is contained in:
LG-ThinQ-Integration 2025-03-28 19:54:18 +09:00 committed by GitHub
parent 577f86b83a
commit adb7aa237b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -123,6 +123,9 @@ DEVICE_TYPE_NUMBER_MAP: dict[DeviceType, tuple[NumberEntityDescription, ...]] =
NUMBER_DESC[ThinQProperty.LIGHT_STATUS],
NUMBER_DESC[ThinQProperty.TARGET_TEMPERATURE],
),
DeviceType.VENTILATOR: (
TIMER_NUMBER_DESC[ThinQProperty.SLEEP_TIMER_RELATIVE_HOUR_TO_STOP],
),
}
_LOGGER = logging.getLogger(__name__)