You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
be able to create automations if the unit is actively heating (rather than mode = heat, when the unit may be idle)
ie - states of the another climate entity integration as an example.
The climate card will show additional gui differences based on mode. eg, Left is Aquatemp climate card, Right is another integration showing the "Heating" status and additional "red shade".
The heating history graph will also only shade RED when it is Heating(or Blue when Cooling), rather than all the time when in mode heat.
ie: Current Aquatemp. It shows red the whole time, even with the unit in a idle state (where the temp is dropping)
Another climate entity integration as an example with hvac_action mapped, only shading Red when the unit is actively heating upto the set point.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered:
I've had a look at all param's that are captured by the aquatemp integration, and nothing stands out to me showing the status from the cloud. In saying that, There could be unmapped stuff i don't understand.
If this is indeed the case, you could assume an hvac_action based on the unit is activity if the compressor is > 0 hz and the selected HVAC Mode
if "Comp. Output frequency [O07] > 0" and "HVACMode = heat" then set HVACAction.HEATING
if "Comp. Output frequency [O07] > 0" and "HVACMode = cool" then set HVACAction.COOLING
if "Comp. Output frequency [O07] = 0" and "HVACMode != off" then set HVACAction.IDLE
if "HVACMode is off" then set HVACAction.OFF
Describe the solution you'd like
If you are able to get current status of the unit, as "heating/cooling/idle" etc, you should be able to map it to the climate entity "hvac_action" - https://developers.home-assistant.io/docs/core/entity/climate/
Benefits include:
be able to create automations if the unit is actively heating (rather than mode = heat, when the unit may be idle)
ie - states of the another climate entity integration as an example.
The climate card will show additional gui differences based on mode. eg, Left is Aquatemp climate card, Right is another integration showing the "Heating" status and additional "red shade".
The heating history graph will also only shade RED when it is Heating(or Blue when Cooling), rather than all the time when in mode heat.
ie: Current Aquatemp. It shows red the whole time, even with the unit in a idle state (where the temp is dropping)
Another climate entity integration as an example with hvac_action mapped, only shading Red when the unit is actively heating upto the set point.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: