Sensibo Sensor Temperature Value

I have a sensibo in one of our bedrooms that’s connected to HASS.
I can add the climate card to Lovelace, but can’t seem to access the sensor values for a sensor card.

I’d like to show the temperature trends for the last few hours.

Thanks.

This is because sensor card only supports sensor domains but the sensibo is under climate domain. There are some work arounds for this. Either you can use the history graph card or you can build a template sensor from sensibo climate entity and then use this with the sensor card.

If you want help with template sensor, do ask.

If you want more feature, please check out this custom card

Thanks @sheminasalam, I’d love some pointers on the template (I’m still very new to HASS).

And great ACJS library - I’ll definitely drop it in :smiley:

can you share the screen shot of the sensor state from the developer console states tab? it is needed to make the template for the template sensor.

Is this what you’re hoping to see?

Yes it is and your template sensor should look like this.

sensor:
  - platform: template
    sensors:
      bedroom_temperature:
        friendly_name: "Bedroom Temperature"
        unit_of_measurement: "°C"
        value_template: "{{ state_attr('climate.bedroom', 'current_temperature') }}"
2 Likes

That’s very kind of you to help out.
HASS has a steep learning curve of concepts like this, so thanks for helping me navigate my first steps!

Looks like it’s working:

1 Like