File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 4
4
5
5
### REQUIREMENTS ###
6
6
7
- Home Assistant v2023 .8 is the minimum version required to use this package.
7
+ Home Assistant v2024 .8 is the minimum version required to use this package.
8
8
9
- The [ auto-entities] ( https://github.com/thomasloven/lovelace-auto-entities ) lovelace plugin and
10
- the [ fold-entity-row] ( https://github.com/thomasloven/lovelace-fold-entity-row ) plugins are both required
9
+ The [ auto-entities] ( https://github.com/thomasloven/lovelace-auto-entities ) and
10
+ [ fold-entity-row] ( https://github.com/thomasloven/lovelace-fold-entity-row ) plugins are both required
11
11
to use the example lovelace card. They are both available on [ HACS] ( https://www.hacs.xyz/ ) .
12
12
13
13
## What does this package do?
@@ -170,4 +170,4 @@ Using the [auto-entities](https://github.com/thomasloven/lovelace-auto-entities)
170
170
171
171
* Open Fold Entity Row*
172
172
173
- ![ Example] ( https://github.com/jazzyisj/unavailable-entities-sensor/blob/main/images/entities_card_open_example.png )
173
+ ![ Example] ( https://github.com/jazzyisj/unavailable-entities-sensor/blob/main/images/entities_card_open_example.png )
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ automation:
23
23
title : " Unavailable Entities"
24
24
message : >
25
25
{% set ns = namespace(result=[]) %}
26
- {% for s in expand(state_attr('sensor .unavailable_entities', 'entity_id')) %}
26
+ {% for s in expand(state_attr('group .unavailable_entities', 'entity_id')) %}
27
27
{% set ns.result = ns.result + [
28
28
device_attr(s.entity_id, "name") ~ "|" ~ device_id(s.entity_id) ~ "|- **" ~ s.name ~ "**\n"
29
29
~ " - *entity_id*: " ~ s.entity_id ~ "\n"
@@ -50,4 +50,4 @@ automation:
50
50
{% endif %}
51
51
{% set ns.result = ns.result + [ entity.data ] %}
52
52
{% endfor %}
53
- {{ ns.result | join('\n') }}
53
+ {{ ns.result | join('\n') }}
Original file line number Diff line number Diff line change 1
1
# ##################################################################################################
2
2
# # PACKAGE: Unavailable Entities Sensor v2.2
3
3
# # DESCRIPTION: Count and list entities with a state of unknown or unavailable
4
- # # REQUIREMENTS: Home Assistant v2023 .8
4
+ # # REQUIREMENTS: Home Assistant v2024 .8
5
5
# # USAGE: https://github.com/jazzyisj/unavailable-entities-sensor/blob/main/README.md
6
6
# ##################################################################################################
7
7
You can’t perform that action at this time.
0 commit comments