Add sensor, number and input_number to groupable list (#37639)

* Add sensor, number and input_number to groupable list

* add plurals to new list members
This commit is contained in:
Arie Catsman 2025-02-23 15:54:44 +01:00 committed by GitHub
parent 3f31adae00
commit 7090cdb62e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -53,6 +53,9 @@ The following entities can be grouped:
- [event (events)](/integrations/event/) - [event (events)](/integrations/event/)
- [media player (media players)](/integrations/media_player/) - [media player (media players)](/integrations/media_player/)
- [notify (notifications)](/integrations/notify/) - [notify (notifications)](/integrations/notify/)
- [sensor (sensors)](/integrations/sensor/)
- [number (numbers)](/integrations/number/)
- [input_number (input_numbers)](/integrations/input_number/)
{% include integrations/config_flow.md %} {% include integrations/config_flow.md %}
@ -136,7 +139,7 @@ In short, when any group member entity is `unlocked`, the group will also be `un
- Otherwise, the group state is `on` if at least one group member is not `off`, `unavailable` or `unknown`. - Otherwise, the group state is `on` if at least one group member is not `off`, `unavailable` or `unknown`.
- Otherwise, the group state is `off`. - Otherwise, the group state is `off`.
### Sensor groups ### Sensor, number, and input_number groups
- The group state is combined / calculated based on `type` selected to determine the minimum, maximum, latest (last), mean, median, range, product, standard deviation, or sum of the collected states. - The group state is combined / calculated based on `type` selected to determine the minimum, maximum, latest (last), mean, median, range, product, standard deviation, or sum of the collected states.
- Members can be any `sensor`, `number` or `input_number` holding numeric states. - Members can be any `sensor`, `number` or `input_number` holding numeric states.