jimz011 / thermostat-card

Forked
Other
3 stars 2 forks source link

Hvac states doesnt work on NEST #1

Open denveronly opened 4 years ago

denveronly commented 4 years ago

hi there i have this in my lovelace (im using nest thermostats with badnest integration) if i dont use hvac states - thermostats are always in heat mode on if i use hvac states - thermostat is always in idle mode (doesnt get orange when heating)

- type: custom:thermostat-card
              title: Nest 2
              entity: climate.upstairs_thermostat
              chevron_size: 100
              hvac:
                states:
                  'Off': 'idle'
                  'Cooling': 'cool'
                  'Heating': 'heating'
                attribute: hvac_action

nest has the following info about:

Снимок экрана 2020-10-19 в 23 02 12
denveronly commented 4 years ago

okay all found it should be like this one to work correctly

- type: custom:thermostat-card
              title: Nest 1
              entity: climate.dining_room_thermostat
              hvac:
                states:
                  'idle': 'off'
                  'Cooling': 'cool'
                  'heating': 'heat'
                attribute: hvac_action