-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add follow me support for Breez Max #38
Conversation
Thanks @mikeyoon. Am so excited to use this on my Breez Max. I’ve found the temp reading at the main air handler up high on wall to read differently than on wall where the BM thermostat is installed. How can we start using this new feature? |
@@ -495,6 +519,7 @@ def _get_action(self) -> object: | |||
"fanspeed": self._device["latestAction"]["fanspeed"], | |||
"temp": self._device["latestAction"]["temp"], | |||
"swing": self._device["latestAction"]["swing"], | |||
"followme": self._device["latestAction"]["followme"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Put this in a try exception. Not all device has this feature
if device.get_is_appliance_is_freezepoin_display(): | ||
entities.append( | ||
CieloHomeSwitchFreezingPoint( | ||
device, "Freezing Point", device.get_uniqueid() + "FreezingPoint" | ||
) | ||
) | ||
|
||
if device.get_device_type() == "BREEZ-MAX": |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you must check if the device is support follow-me, not if it's Breeze max. My device support it and i don't have a Breeze-Max.
are you guys sure only max supports follow me ? i have breez-plus and breez-eco and they both allow me to use follow me function which changes the temp on midea, can these be added? |
@audreez Don't worry, i ask for he change that! It's not for only the breeze-max |
Adds support for the follow me feature. One thing I noticed that might need addressing is that I restricted it to the Breez Max. I don't know if this feature is limited to the Max, or if there's a better way to determine follow me compatibility altogether.