Skip to content

Commit d0a6329

Browse files
committed
2 parents 7eb5d86 + 07948fe commit d0a6329

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
### REQUIREMENTS ###
66

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.
88

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
1111
to use the example lovelace card. They are both available on [HACS](https://www.hacs.xyz/).
1212

1313
## What does this package do?
@@ -170,4 +170,4 @@ Using the [auto-entities](https://github.com/thomasloven/lovelace-auto-entities)
170170

171171
*Open Fold Entity Row*
172172

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)

examples/detailed_persistent_notification.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ automation:
2323
title: "Unavailable Entities"
2424
message: >
2525
{% 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')) %}
2727
{% set ns.result = ns.result + [
2828
device_attr(s.entity_id, "name") ~ "|" ~ device_id(s.entity_id) ~ "|- **" ~ s.name ~ "**\n"
2929
~ " - *entity_id*: " ~ s.entity_id ~ "\n"
@@ -50,4 +50,4 @@ automation:
5050
{% endif %}
5151
{% set ns.result = ns.result + [ entity.data ] %}
5252
{% endfor %}
53-
{{ ns.result | join('\n') }}
53+
{{ ns.result | join('\n') }}

package_unavailable_entities.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
###################################################################################################
22
## PACKAGE: Unavailable Entities Sensor v2.2
33
## DESCRIPTION: Count and list entities with a state of unknown or unavailable
4-
## REQUIREMENTS: Home Assistant v2023.8
4+
## REQUIREMENTS: Home Assistant v2024.8
55
## USAGE: https://github.com/jazzyisj/unavailable-entities-sensor/blob/main/README.md
66
###################################################################################################
77

0 commit comments

Comments
 (0)