From b45825d9fa94ba155a85b2e6af4f2113a87dc244 Mon Sep 17 00:00:00 2001
From: Marcel van der Veldt <m.vanderveldt@outlook.com>
Date: Thu, 30 May 2024 15:28:42 +0200
Subject: [PATCH] Mark Matter climate dry/fan mode support on Panasonic AC

---
 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 69a961ebf907b1..2050a9eb185c45 100644
--- a/homeassistant/components/matter/climate.py
+++ b/homeassistant/components/matter/climate.py
@@ -59,6 +59,7 @@
     # The Matter spec is missing a feature flag if the device supports a dry mode.
     # In the list below specify tuples of (vendorid, productid) of devices that
     # support dry mode.
+    (0x0001, 0x0108),
     (0x1209, 0x8007),
 }
 
@@ -66,6 +67,7 @@
     # The Matter spec is missing a feature flag if the device supports a fan-only mode.
     # In the list below specify tuples of (vendorid, productid) of devices that
     # support fan-only mode.
+    (0x0001, 0x0108),
     (0x1209, 0x8007),
 }