My pretty thermostat + HVAC graph

Mushroom climate card to control my EcoBee (3, Lite) combined with (via vertical-stack-in-card) a mini-graph-card showing the average house temp and when the AC is on. Would also show the heater (that’s the red line at the bottom) but I don’t normally get to see both in a single day. The heater/AC on trackers are binary sensor helpers set up in the configuration.yml.

image

Lovelace:

type: custom:vertical-stack-in-card
cards:
  - type: custom:mushroom-climate-card
    entity: climate.the_hive
    fill_container: false
    icon: mdi:bee
    show_temperature_control: true
    collapsible_controls: false
    layout: horizontal
  - type: custom:mini-graph-card
    entities:
      - entity: sensor.house_temp
      - entity: binary_sensor.hvac_heating_on
        color: red
        show_line: false
        show_points: false
        show_legend: false
        y_axis: secondary
        smoothing: false
      - entity: binary_sensor.hvac_ac_on
        color: blue
        show_line: false
        show_points: false
        show_legend: false
        y_axis: secondary
        smoothing: false
    state_map:
      - value: 'off'
      - value: 'on'
    show:
      name: false
      state: false
      icon: false
    animate: true
    hour24: true
    hours_to_show: 12
    line_width: 2
    points_per_hour: 60
    smooth: true

configuration.yaml:

- platform: template
  sensors:
    hvac_heating_on:
      friendly_name: Heater On
      value_template: >-
        {{ is_state_attr('climate.the_hive', 'equipment_running', 'auxHeat1,fan') }}
    hvac_ac_on:
      friendly_name: AC On
      value_template: >-
        {{ is_state_attr('climate.the_hive', 'equipment_running', 'compCool1,fan') }}
- platform: template
  sensors:
    hvac_fan_on:
      friendly_name: Fan On
      value_template: >-
        {{ is_state_attr('climate.the_hive', 'fan', 'on') }}
4 Likes

What ecobee do you have? My ecobee3 apparently doesn’t have the equipment_running attribute

Thanks

3 lite from Costco. You don’t have these attributes?

I confirmed my Ecobee 3 (not lite) does have this. Thanks for sharing, looks great.

Smaller list.
Are you using the Homekit or Ecobee Cloud integration?

Cloud. No Apple products here.

This is wonderful! The best thermostat card I’ve ever seen. Thank you!

1 Like

Same here, cloud no apple products.