Entity-filter card for Livisi thermostat

Hi,

I’d like to display an entity-filter-card on a dashboard showing all Livisi-thermostats (using the unofficial Livisi-integration) that are currently heating.

What I have:

type: entity-filter
entities:
  - climate.kitchen
  - climate.bedroom
  - ...
state_filter:
  - operator: '=='
    value: ???
card:
  type: glance
  title: Heating

The default cards for the thermostats show a different layout/color when the device is currently heating, so the information about what each device is doing, must be somewhere - but how do I find out, how to request the state of the devices respectively what are the possible values of the state?

Any hint is appreciated.

I used value “== heat” to get this to work, unfortunately with the Livisi Unofficial implementation v1.8 this has changed, but if you (still) use 1.7.* that should work.

I’m also looking for information on how to find out which values might be valid as guessing around is quite annoying.

By guessing I found out that with v1.8 it has to be “!=” instead of “==”, no idea why.
So my whole card looks like this:


type: entity-filter
entities:
  - climate....my_entities_here
state_filter:
  - operator: '!='
    value: heat
card:
  type: glance
  title: Currently heating