I would like to list the below entities ONLY if they don’t have the state, “Unavailable”.
The first thing I tried was an entity-filter card. However, it still shows all the entities that are unavailable
:
type: entity-filter
entities:
- media_player.plex_plex_for_android_mobile_alyssa_s_tablet
- media_player.plex_plexkodiconnect_plexkodiconnect
- media_player.plex_plex_for_roku_roku_premiere_yr0036878378
state_filter:
- operator: '!='
- Unavailable
card:
type: entities
title: Plex
Then, I tried setting up a conditional card… however, it still shows the unavailable entities as well:
type: conditional
conditions:
- entity: media_player.plex_plex_for_android_mobile_alyssa_s_tablet
state_not: Unavailable
- entity: media_player.plex_plexkodiconnect_plexkodiconnect
state_not: Unavailable
card:
type: entities
entities:
- entity: media_player.plex_plex_for_android_mobile_alyssa_s_tablet
- entity: media_player.plex_plexkodiconnect_plexkodiconnect
title: Plex
show_header_toggle: false
I’ve tried several different things, but can’t get this to work. I’d appreciate seeing an example code I can adapt for my entities. Thanks so much in advance.