In Lovelace, I would like to have an entity filter card showing only the thermostat that have target temperature higher than 16 degree Celsius.
Tried this :
type: entity-filter
entities:
- climate.bureau
- climate.lysandre
- climate.clement
- climate.cuisine
- climate.maison
state_filter:
- "temperature": '> 16'
card:
type: glance
title: Chauffage allumé
The State filter is a mystery for me.
tom_l
2
I use this custom card:
card:
title: Too Hot
type: glance
filter:
exclude:
- entity_id: sensor.gpu_temperature
- entity_id: sensor.cpu_temperature
include:
- entity_id: sensor.*temperature
state: '> 25'
show_empty: false
type: 'custom:monster-card'
Note the use of wildcards in the sensor name. Makes it very easy.
Wow, thanks that’s cool, it work for showing the target temp sensor of a thermostat.
Bu is-it possible to show the climate control of this filtered thermostat. (so I can change the target temp)?
I tried using:
entity_id: climate.*temperature
No chance
tom_l
4
I think you can only show the entity not the entity’s attributes.