mill1000 / midea-msmart

Python library for local control of Midea (and associated brands) smart air conditioners.
MIT License
49 stars 2 forks source link

Fix unsupported property warnings for Buzzer ID in logs #125

Closed mill1000 closed 4 months ago

mill1000 commented 4 months ago

When testing Anion supports, some other warnings were generated in the logs about an unsupported property

2024-05-07 00:28:46.302 WARNING (MainThread) [msmart.device.AC.command] Unsupported property. ID: 0x001A, Size: 1.

This is due to #120, in which the Buzzer property was inserted into every Properties command. However, a parser was never defined for the response.

We don't really care about the response, so define a parser that returns None and don't store it.