From 45f7bd2432a04fb69c9fdb9b6204de7eac87aa2e Mon Sep 17 00:00:00 2001 From: Simone Chemelli Date: Fri, 4 Oct 2024 22:39:25 +0200 Subject: [PATCH] fix: add missing body_type "163" (#317) Fix for https://github.com/wuwentao/midea_ac_lan/issues/341 ## Summary by CodeRabbit - **New Features** - Introduced a new body type classification, `A3`, enhancing the existing options for users. This update allows for more detailed categorization of body types within the application. --- midealocal/message.py | 1 + 1 file changed, 1 insertion(+) diff --git a/midealocal/message.py b/midealocal/message.py index ba782611..95351f93 100644 --- a/midealocal/message.py +++ b/midealocal/message.py @@ -14,6 +14,7 @@ class BodyType(IntEnum): A0 = 0xA0 A1 = 0xA1 + A3 = 0xA3 A4 = 0xA4 AA = 0xAA B0 = 0xB0