-
-
Notifications
You must be signed in to change notification settings - Fork 21
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
[feat] - heat pump mode (dual with only one switch) #143
Comments
To add to this, My system requires the fan operate in both heating and cooling mode. There is a Fan_on_with_ac option, I also need a Fan_on_with_heater option. My work around is to use HA helpers to create a switch group for the heater that uses the heater and fan switch and make it one entity so to speak. |
Would the boolean input switch be able to directly connect to a binary sensor? My heat pump exposes a "binary_sensor.status_cooling_43024" that would need to be somehow used by the heat_cool_reverse_entity configuration value. |
Yes. In the implementation, the switch can be a boolean input. Either manual or direct inout from the heat pump. |
Update: I am happy to inform you that I implemented a working version of the heat pump mode. Now, I have to cover all with tests to ensure the feature is stable enough to let you try it out. In heat_pump mode, there will be a maximum of three HVAC modes available based on the current mode of the heat pump and if dual mode is enabled: Dual modeheating (is_heat_pump_cooling: false):
cooling (is_heat_pump_cooling: true):
Single modeheating (is_heat_pump_cooling: false):
cooling (is_heat_pump_cooling: true):
|
Hi, do i understand correctly that this fix will also allow to set the same entity for cooler and heater? |
Exactly! |
Please check and enjoy v0.9.8.beta-1 Heat Pump (one switch heat/cool) modeThis setup allows you to use a single switch for both heating and cooling. To enable this mode you define only a single switch for the heater and set the set youer heat pump's current state (heating or cooling) as for the The entity can be an input buulean for manual control or an entity that provided by the heat pump. heater: switch.study_heat_pump
target_sensor: sensor.study_temperature
heat_pump_cooling: sensor.study_heat_pump_state Heat Pump Hvac ModesHeat-Cool Modeheater: switch.study_heat_pump
target_sensor: sensor.study_temperature
heat_pump_cooling: sensor.study_heat_pump_state
heat_cool_mode: true heating (heat_pump_cooling: false):
cooling (heat_pump_cooling: true):
Single modeheater: switch.study_heat_pump
target_sensor: sensor.study_temperature
heat_pump_cooling: sensor.study_heat_pump_state
heat_cool_mode: false # <-- or not set heating (heat_pump_cooling: false):
cooling (heat_pump_cooling: true):
|
Many users have a problem using the component in dual mode with a heat pump with only one switch, and the heat pump switches to heat or cool.
[#142][#54][#225]
Possible solution:
The text was updated successfully, but these errors were encountered: