From 965a96b9573e49250be9adae261ed3ff4486c156 Mon Sep 17 00:00:00 2001 From: Bipin Kumar Date: Sun, 14 Jun 2026 16:10:37 +0530 Subject: [PATCH] Add Dry and Fan-Only modes to Panasonic CS-CU-EZ18CKYXFM AC in Matter (#173709) --- 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 5c46cda26197..96cb2868965c 100644 --- a/homeassistant/components/matter/climate.py +++ b/homeassistant/components/matter/climate.py @@ -99,6 +99,7 @@ SUPPORT_DRY_MODE_DEVICES: set[tuple[int, int]] = { # support dry mode. (0x0001, 0x0108), (0x0001, 0x010A), + (0x0001, 0x013F), (0x1209, 0x8000), (0x1209, 0x8001), (0x1209, 0x8002), @@ -138,6 +139,7 @@ SUPPORT_FAN_MODE_DEVICES: set[tuple[int, int]] = { # support fan-only mode. (0x0001, 0x0108), (0x0001, 0x010A), + (0x0001, 0x013F), (0x118C, 0x2022), (0x1209, 0x8000), (0x1209, 0x8001),