I first time I tried setting up Zigbee bulbs I set them in a ZHA group (Zigbee | Configure) but it they were very unstable. Dimming at different levels. Really frustrating.
Switched to the HA Helper group method instead and they’re working 100%.
The syntax changed, those are old kind of groups.
The new syntax specifies what it is: Group - Home Assistant
So you can still create your own yaml files and the groups will act as whatever you set them.
In addition to my solution in #2, I created four groups (in helpers):
Downstairs Lights Group
Downstairs Switches Group
Upstairs Lights Group
Upstairs Switches Group
Some of my lights are switches and some are lights. Instead of making the switches as lights option in helpers, I chose to just make multiple groups. (Because I have too many automations to change “switch” to “light”. Maybe later).
And then One to rule them All, I created an “all lights” group in groups.yaml
AllLights:
name: All Lights Group
entities:
- light.downstairs_lights_group
- switch.downstairs_switches_group
- light.upstairs_lights_group
- switch.upstairs_switches_group
I created two groups in the helpers section, one for regular light switches and one for dimmer switches because my basement lights are on a smart dimmer switch and Home Assistant make it a light entity instead of a switch.
That is not working. It works if I put one of the groups in the button like light.dimmer_lights or 'switch.regular_lights`, but light.AllLights does not work, nor can I do
type: custom:button-card
name: All Lights
entities:
- switch.regular_lights
- light.dimmer_lights
I tried using group.AllLights and that also didn’t work.