Wink - Sensi thermostat sensors

I was so excited about the Wink thermostat integration that I ordered one last night, had it delivered this afternoon, and now have it installed!

Now for my question… Is there any way to extract the additional information from the temp & humidity sensors and have it viewable in HASS? other than listed in the ‘States’ list?



1 Like

You’ll want to take a look at the template sensor platform.

@Corey_Johnson Hey, did you end up creating a template sensor for this? Also, know of any way to determine when the HVAC is On vs. Off?

I only created one for the temperature (below) although I may eventually add another for humidity as well.

thermostat_temperature_current:
  value_template: >-
    {%- if states.climate.thermostat -%}
      {{ states.climate.thermostat.attributes.current_temperature }}
    {%- else -%}
      n/a
    {%- endif -%}
#      unit_of_measurement: '%'
  entity_id: climate.thermostat
  friendly_name: 'Thermostat Temperature Current'

and use it in my floorplan:

I have not found a way to see if it is actually running/on.

This helps me out a lot. Thanks for sharing!

Nice work on the floorplan!