Replies: 3 comments 2 replies
-
I have a setting not to switch heat/cold. I assume that is not quite what you are after? |
Beta Was this translation helpful? Give feedback.
-
I also wish I had never added hvac mode! |
Beta Was this translation helpful? Give feedback.
-
@revk Sorry for the (very) late reply. In short, what I want is manual control over the HVAC mode while in Faikin auto mode. In other words, if I go into HA and set the mode to "Heat", I want the unit to only heat, "Cool" to only cool, "Off" to be off, and "Auto" to be current Faikin auto behavior. Importantly, I want this behavior to stick until it's changed. To explain in a slightly different manner (with Faikin auto mode on at all times): Current Behavior: If I manually change the HVAC mode to anything other than Auto, Faikin auto mode eventually changes it back to Auto, and will both heat and cool.
Desired Behavior: If I manually change the HVAC mode to anything other than Auto, Faikin respects the selection while otherwise maintaining its behavior.
Use Case: This would be helpful, for example, during the summer where I don't want to ever heat the house, even if the temp drops at night. Likewise, during the winter when I don't want to ever cool the house, even if the temp rises at midday. Additionally, if I open a door or window, I want to be able to turn the unit off (or to fan mode) and have it not turn back on until I tell it to. All, ideally, while keeping Faikin auto mode on, because I greatly appreciate auto mode's use of a BLE sensor to maintain real-world room temps. |
Beta Was this translation helpful? Give feedback.
-
I have 3 Faikin units, all working fantastically. They all run Faikin auto mode with
autop
on, meaning they turn off when within the desired temp range for a while.A minor but irritating issue is that the Faikin reports the unit as off to HA/MQTT when it's off due to
autop
. This may be technically accurate, but it hides the fact that the unit is still running Faikin auto mode and may turn itself back on without user input. In some interfaces (such as Homekit), a thermostat in "Off" mode cannot have its target temp changed, so a user is required to manually turn the unit on to change the Faikin auto mode target temp.Below is a suggestion to provide an alternate set of behaviors leveraging existing Faikin auto mode (hereafter simply referred to as
auto
) that will make control via HA (and other smart home apps) more intuitive.The end goal is to have Faikin utilize the strengths of
auto
(such as using an external temp reference, allowing a customizable target temp range, etc) while maintaining expected, intuitive behaviors from thermostat controls typically found in smart home apps.This presumably would be optional, and could be enabled with a boolean setting. Let's call that setting
autoalternate
, and assume from here on that this setting - as well asauto
, unless otherwise specified - is enabled.New settings
autoheatonly
(bool) - When enabled, HVAC mode changes to "Heat".auto
would behave as normal, except that it would not switch into cooling mode even if the room temp exceeds the target.autocoolonly
(bool) - When enabled, HVAC mode changes to "Cool".auto
would behave as normal, except that it would not switch into heating mode even if the room temp falls below the target.Note: Only one of these settings can be on at a time. Toggling one on turns the other off.
New behaviors
autoheatonly
andautocoolonly
off (existing normalauto
behavior).autoheatonly
on.autocoolonly
on.auto
to off (preventing Faikin from turning the HVAC unit back on without manual input).Inversely:
autoheatonly
is off, andautocoolonly
is off: Faikin reports HVAC mode as "Auto"autoheatonly
is on: Faikin reports HVAC mode as "Heat"autocoolonly
is on: Faikin reports HVAC mode as "Cool"autop
auto
is off and the HVAC unit is off: Faikin reports HVAC mode as "Off"Thoughts
I've only given a cursory glance at the source code, but I'd be happy to see if I can contribute to this idea. The suggestion, of course, is just one way this concept could be implemented.
Lastly, thank you revk for Faikin. It's done a lot to take Daikin mini split units from passable to exceptional.
Beta Was this translation helpful? Give feedback.
All reactions