Hi,
I know homeassistant.turn_on and homeassistant.turn_off to control a group of switches (and other types).
But, do you know if exist the same to open and close covers?
Thanks
Hi,
I know homeassistant.turn_on and homeassistant.turn_off to control a group of switches (and other types).
But, do you know if exist the same to open and close covers?
Thanks
I am using cover.close_cover
/cover.open_cover
, regardless of it being a single cover, or a cover group.
Same goes for lights (light.turn_on
/light.turn_off
/light.toggle
)
Edit:
I need to mention, I do not have the cover grouped in my group.yaml, but in a cover_group.yaml
One of the groups for an example is this:
- platform: group
name: Kitchen
entities:
- cover.kitchen_right
- cover.kitchen_left
The cover_group.yaml is included in my configuration.yaml like this
cover: !include cover_group.yaml
Thank you very much!!