Hi, with nest as thermostat component i can use the current_operation to see of my nest is heating or is on idle. With the change to Climate, i miss this attribute. Anyone know how to fix it?
Yeah, I’ve noticed some loss in functionality too. I think the new way to see is with “operation_mode” (https://home-assistant.io/components/sensor.nest/), but I’ve not got that to work… I’m now using templates to determine what my Nest is doing…
template_basement_nest_current_operation:
value_template: >-
{%- if is_state('binary_sensor.basement_hvac_ac_state', 'on') %}
Cool
{% elif is_state('binary_sensor.basement_hvac_heater_state', 'on') %}
Heat
{% else %}
Not Running
{%- endif %}
template_main_floor_nest_current_operation:
value_template: >-
{%- if is_state('binary_sensor.main_floor_hvac_ac_state', 'on') %}
Cool
{% elif is_state('binary_sensor.main_floor_hvac_heater_state', 'on' )%}
Heat
{% else %}
Not Running
{%- endif %}
template_upstairs_nest_current_operation:
value_template: >-
{%- if is_state('binary_sensor.upstairs_hvac_ac_state', 'on') %}
Cool
{% elif is_state('binary_sensor.upstairs_hvac_heater_state', 'on') %}
Heat
{% else %}
Not Running
{%- endif %}
thanks, this i can use