From 8a23e37837eed6bedf4ed30d1fd88d21b88c77f9 Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Mon, 1 Jul 2024 17:30:23 +0200 Subject: [PATCH] Mark dry/fan-only climate modes as supported for Panasonic room air conditioner (#120939) --- homeassistant/components/matter/climate.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/homeassistant/components/matter/climate.py b/homeassistant/components/matter/climate.py index d2656d59138..c97124f4305 100644 --- a/homeassistant/components/matter/climate.py +++ b/homeassistant/components/matter/climate.py @@ -60,6 +60,7 @@ SUPPORT_DRY_MODE_DEVICES: set[tuple[int, int]] = { # In the list below specify tuples of (vendorid, productid) of devices that # support dry mode. (0x0001, 0x0108), + (0x0001, 0x010A), (0x1209, 0x8007), } @@ -68,6 +69,7 @@ SUPPORT_FAN_MODE_DEVICES: set[tuple[int, int]] = { # In the list below specify tuples of (vendorid, productid) of devices that # support fan-only mode. (0x0001, 0x0108), + (0x0001, 0x010A), (0x1209, 0x8007), }