Temperature not showing in lovelace. Only the state

Hi all,

See this screenshot;

I don’t get why it shows “cool celsius” rather then the temperature?

This is my lovelace configuration:

cards:
  - type: entities
    title: Temperatuur
    entities:
      - climate.woonkamer
      - sensor.someren_temperature

Do I need to do something different?

I’m not sure since I don’t read dutch, but my climate.xxx device is the actual thermostat itself. and the state tells me which mode it’s running in (at the moment, Cool).

There’s an attribute called current_temperature you probably want to access (assuming your climate device is like mine).

Probably the easiest was would be to setup a template sensor to capture the attribute you want. I know I’ve seen posts on here this week about something similar, but haven’t done it myself I don’t think.

I was wrong, I do have something very similar for one of my sensors.

- platform: template
  sensors:
    house_temp:
      friendly_name: "House Temperature"
      unit_of_measurement: "°C"
      value_template: "{{ states.climate.home.attributes.current_temperature }}"

I was already wondering for days, but apparently a pull request was created yesterday to resolve the issue;

https://github.com/home-assistant/home-assistant-polymer/pull/1494