Hi all,
this is my group:
This is the group definition in groups.yaml:
jalousien_groundfloor:
name: Jalousien im Erdgeschoss
icon: mdi:window-shutter
entities:
- cover.jalousie_terrasse_links
- cover.jalousie_terrasse_rechts
- cover.jalousie_bodentiefes_fenster
- cover.jalousie_kueche_west
- cover.jalousie_kueche_nord_links
- cover.jalousie_kueche_nord_rechts
HA Docker image version is 2022.3.6.
Here’s my automation:
- alias: Jalousien schliessen mit linkem Zentraleknopf
trigger:
- platform: event
event_type: shelly.click
event_data:
device: shellyswitch25-C45BBE7741F9
channel: 1
click_type: single
action:
- service: cover.close_cover
target:
entity_id:
- cover.jalousie_terrasse_links
- cover.jalousie_terrasse_rechts
- cover.jalousie_bodentiefes_fenster
- cover.jalousie_kueche_west
- cover.jalousie_kueche_nord_links
- cover.jalousie_kueche_nord_rechts
# - service: homeassistant.turn_off
# target:
# entity_id:
# - group.jalousien_groundfloor
The automation like you see here works as expected. But if I switch the commenting in the action to this
action:
# - service: cover.close_cover
# target:
# entity_id:
# - cover.jalousie_terrasse_links
# - cover.jalousie_terrasse_rechts
# - cover.jalousie_bodentiefes_fenster
# - cover.jalousie_kueche_west
# - cover.jalousie_kueche_nord_links
# - cover.jalousie_kueche_nord_rechts
- service: homeassistant.turn_off
target:
entity_id:
- group.jalousien_groundfloor
nothing happens when I trigger this automation. What is my mistake? It’s not a cover group. It’s an ordinary group that happens to contain only covers at the moment. The covers are all Shelly 2.5 devices. I believe I have done everything as described in the documentation and seen in examples.
Thank you in advance for having a look.
Best,
MPW