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.
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
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.
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') }}"