Zigbee Schalter als Rolladenschalter

Dann klickt der Shelly wieder…aber mehr nicht

Teste mal noch die beiden Bedingungen im ersten Oder-Baustein der Wenn-dann-Aktion. Die Bedingungen dürfen im Stand nicht erfüllt sein. Wenn das alles passt, dann machst Du Folgendes:

  • Füge ganz unten als Aktion den Baustein “Parallel laufen” ein.
  • Schneide die beiden kompletten vorigen Aktionen aus (Dreipunktemenü) und füge sie untereinander in die Parallelaktion.
1 „Gefällt mir“

JAAAAAA das ist es !!!
Vielen lieben Dank für deine Unterstützung !
Echt Wahnsinn was du drauf hast !

Hier nochmal die yaml falls jemand ähnliche Probleme hat.

alias: Rollladen Esszimmer Test
description: ""
trigger:
  - platform: device
    domain: mqtt
    device_id: 3e0cbe7513bcfebe21c47d9a70aaf7a7
    type: action
    subtype: single_left
    discovery_id: 0x00158d0003492206 action_single_left
    id: ab
  - platform: device
    domain: mqtt
    device_id: 3e0cbe7513bcfebe21c47d9a70aaf7a7
    type: action
    subtype: single_right
    discovery_id: 0x00158d0003492206 action_single_right
    id: auf
condition: []
action:
  - parallel:
      - choose:
          - conditions:
              - condition: trigger
                id:
                  - ab
              - condition: not
                conditions:
                  - condition: or
                    conditions:
                      - condition: state
                        entity_id: cover.esszimmer_rollo
                        state: opening
                      - condition: state
                        entity_id: cover.esszimmer_rollo
                        state: closing
            sequence:
              - service: cover.close_cover
                metadata: {}
                data: {}
                target:
                  entity_id: cover.esszimmer_rollo
          - conditions:
              - condition: trigger
                id:
                  - auf
              - condition: not
                conditions:
                  - condition: or
                    conditions:
                      - condition: state
                        entity_id: cover.esszimmer_rollo
                        state: opening
                      - condition: state
                        entity_id: cover.esszimmer_rollo
                        state: closing
            sequence:
              - service: cover.open_cover
                metadata: {}
                data: {}
                target:
                  entity_id: cover.esszimmer_rollo
      - if:
          - condition: or
            conditions:
              - condition: device
                device_id: 1d7409d50e84fc4b1b3be5362d862cfb
                domain: cover
                entity_id: af5cc31583698bd5a5e12f27d303a4d1
                type: is_closing
              - condition: device
                device_id: 1d7409d50e84fc4b1b3be5362d862cfb
                domain: cover
                entity_id: af5cc31583698bd5a5e12f27d303a4d1
                type: is_opening
          - condition: or
            conditions:
              - condition: trigger
                id: ab
              - condition: trigger
                id: auf
        then:
          - service: cover.stop_cover
            metadata: {}
            data: {}
            target:
              entity_id: cover.esszimmer_rollo
mode: single

Gerne, freut mich, dass ich helfen konnte.