Sometimes 1 or 2 out of a total of 21 Homematic roller shutters are not controlled

I control my Homematic roller shutters morning and evening using an automation, and sometimes (one or two days a week) one or two of the 21 Homematic roller shutters aren’t being controlled.

There are two automations: one for raising the shutters in the morning and the other for lowering them in the evening.

Sometimes one or two shutters don’t raise in the morning, and sometimes one or two don’t lower in the evening.

It’s always different shutters; today it’s the kitchen shutter, next time it’s the living room shutter, and so on.

I’ve also tried adding a one-second delay before each shutter because I thought the number of signals might be too high, but that doesn’t seem to be the issue. The delay is currently disabled.

The automation trace shows that all the shutters were being controlled correctly.

I don’t know how to solve this problem or where to find out why one or two shutters aren’t being controlled by the automation.

Here’s some background information:
Intel NUC 7i5DNKE i5 7300U 8GB RAM 256 SSD (LAN)
Homematic USB Stick: HmIP-RFUSB
Homematic Rolladenaktor: HM-LC-BL1PBU-FM (21 Stück)

I hope someone can help me solve this problem. Thank you very much.

Here are the corresponding automations:

Automated roller shutters: Raise in the morning according to predefined conditions:

alias: Rollos morgen öffnen [alle Bedingungen]
description: ""
triggers:
  - trigger: time
    at: "00:05:00"
    id: check_Nachtdienst
    enabled: true
  - at: "07:00:01"
    id: Zeit_07_00_01_Uhr
    trigger: time
  - at: "07:45:01"
    id: Zeit_07_45_01_Uhr
    trigger: time
  - at: "09:00:01"
    id: Zeit_09_00_01_Uhr
    trigger: time
  - at: "12:00:01"
    id: Zeit_12_00_01_Uhr
    trigger: time
conditions: []
actions:
  - choose:
      - conditions:
          - condition: trigger
            id:
              - check_Nachtdienst
          - condition: time
            after: "00:04:00"
            weekday:
              - tue
              - wed
              - thu
              - fri
              - sat
          - condition: template
            value_template: >-
              {{ state_attr('calendar.schichtplan_' + now().year | string(),
              'end_time') == as_timestamp(now()) | timestamp_custom('%Y-%m-%d
              05:45:00') }}
            alias: Ende Zeit 05:45  von Nachtdienst prüfen
        sequence:
          - action: input_boolean.turn_on
            metadata: {}
            data: {}
            target:
              entity_id: input_boolean.check_nachtdienst
          - action: input_boolean.turn_off
            metadata: {}
            data: {}
            target:
              entity_id: input_boolean.turklingel_aus_einschalten
        alias: Check Nachtdienst
      - conditions:
          - condition: trigger
            id:
              - Zeit_07_00_01_Uhr
          - condition: time
            after: "07:00:00"
            weekday:
              - mon
              - tue
              - wed
              - thu
              - fri
        sequence:
          - alias: Shutter EG Büro Rollo Fenster
            choose:
              - conditions:
                  - condition: state
                    entity_id: input_boolean.shutter_eg_buero_rollo_fenster_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id:
                        - cover.shutter_eg_buero_rollo_fenster
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter EG Diele 1 Rollo Fenster
            choose:
              - conditions:
                  - condition: state
                    entity_id: input_boolean.shutter_eg_diele_rollo_fenster_1_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id:
                        - cover.shutter_eg_diele_rollo_fenster_1
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter EG Diele 2 Rollo Fenster
            choose:
              - conditions:
                  - condition: state
                    entity_id: input_boolean.shutter_eg_diele_rollo_fenster_2_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id:
                        - cover.shutter_eg_diele_rollo_fenster_2
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter EG WC Rollo Fenster
            choose:
              - conditions:
                  - condition: state
                    entity_id: input_boolean.shutter_eg_wc_rollo_fenster_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id:
                        - cover.shutter_eg_wc_rollo_fenster
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter EG Küche Rollo Fenster
            choose:
              - conditions:
                  - condition: state
                    entity_id: input_boolean.shutter_eg_kueche_rollo_fenster_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id:
                        - cover.shutter_eg_kueche_rollo_fenster
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter EG Küche Rollo Tür
            choose:
              - conditions:
                  - condition: state
                    entity_id: input_boolean.shutter_eg_kueche_rollo_tuer_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id:
                        - cover.shutter_eg_kueche_rollo_tuer
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter EG Esszimmer Rollo Fenster
            choose:
              - conditions:
                  - condition: state
                    entity_id: >-
                      input_boolean.shutter_eg_esszimmer_rollo_fenster_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id:
                        - cover.shutter_eg_esszimmer_rollo_fenster
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter EG Esszimmer Rollo Terrassentür
            choose:
              - conditions:
                  - condition: state
                    entity_id: >-
                      input_boolean.shutter_eg_esszimmer_rollo_terrassentuer_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id:
                        - cover.shutter_eg_esszimmer_rollo_terrassentuer
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter EG Wohnzimmer Rollo Fenster
            choose:
              - conditions:
                  - condition: state
                    entity_id: >-
                      input_boolean.shutter_eg_wohnzimmer_rollo_fenster_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id:
                        - cover.shutter_eg_wohnzimmer_rollo_fenster
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter EG Wohnzimmer Rollo Terrassenfenster
            choose:
              - conditions:
                  - condition: state
                    entity_id: >-
                      input_boolean.shutter_eg_wohnzimmer_rollo_terrassenfenster_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id:
                        - cover.shutter_eg_wohnzimmer_rollo_terrassenfenster
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter EG Wohnzimmer Rollo Terrassentür
            choose:
              - conditions:
                  - condition: state
                    entity_id: >-
                      input_boolean.shutter_eg_wohnzimmer_rollo_terrassentuer_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id:
                        - cover.shutter_eg_wohnzimmer_rollo_terrassentuer
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter OG Treppenaufgang Rollo Fenster
            choose:
              - conditions:
                  - condition: state
                    entity_id: >-
                      input_boolean.shutter_og_treppenaufgang_rollo_fenster_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id: cover.shutter_og_treppenaufgang_fenster
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter OG Wannenbad Rollo Fenster
            choose:
              - conditions:
                  - condition: state
                    entity_id: >-
                      input_boolean.shutter_og_wannenbad_rollo_fenster_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id: cover.shutter_og_wannenbad_fenster
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter OG Diele Rollo Fenster
            choose:
              - conditions:
                  - condition: state
                    entity_id: input_boolean.shutter_og_diele_rollo_fenster_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id: cover.shutter_og_diele_rollo_fenster
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter OG Kinderzimmer 1 Rollo Fenster
            choose:
              - conditions:
                  - condition: state
                    entity_id: >-
                      input_boolean.shutter_og_kinderzimmer_1_rollo_fenster_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id: cover.shutter_og_kinderzimmer_1_rollo_fenster
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter OG Kinderzimmer 2 Rollo Fenster
            choose:
              - conditions:
                  - condition: state
                    entity_id: >-
                      input_boolean.shutter_og_kinderzimmer_2_rollo_fenster_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id: cover.shutter_og_kinderzimmer_2_rollo_fenster
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter OG Büro Rollo Fenster
            choose:
              - conditions:
                  - condition: state
                    entity_id: input_boolean.shutter_og_buero_rollo_tuer_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id: cover.shutter_og_buero_rollo_tuer
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter OG Duschbad Rollo Fenster links
            choose:
              - conditions:
                  - condition: state
                    entity_id: >-
                      input_boolean.shutter_og_duschbad_rollo_fenster_links_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id: cover.shutter_og_duschbad_rollo_fenster_links
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter OG Duschbad Rollo Fenster rechts
            choose:
              - conditions:
                  - condition: state
                    entity_id: >-
                      input_boolean.shutter_og_duschbad_rollo_fenster_rechts_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id: cover.shutter_og_duschbad_rollo_fenster_rechts
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter OG Schlafzimmer Rollo Fenster inkl. Check Nachtdienst
            choose:
              - conditions:
                  - condition: state
                    entity_id: input_boolean.check_nachtdienst
                    state: "off"
                  - condition: state
                    entity_id: >-
                      input_boolean.shutter_og_schlafzimmer_rollo_fenster_automation
                    state: "on"
                sequence:
                  - alias: Rollos OG Schlafzimmer öffnen
                    metadata: {}
                    data: {}
                    action: cover.open_cover
                    target:
                      entity_id:
                        - cover.shutter_og_schlafzimmer_rollo_fenster
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter OG Schlafzimmer Rollo Tür inkl. Check Nachtdienst
            choose:
              - conditions:
                  - condition: state
                    entity_id: input_boolean.check_nachtdienst
                    state: "off"
                  - condition: state
                    entity_id: >-
                      input_boolean.shutter_og_schlafzimmer_rollo_tuer_automation
                    state: "on"
                sequence:
                  - alias: Rollos OG Schlafzimmer öffnen
                    metadata: {}
                    data: {}
                    action: cover.open_cover
                    target:
                      entity_id:
                        - cover.shutter_og_schlafzimmer_rollo_tuer
        alias: Alle Rollos Werktags um 07:00 Uhr auf
      - conditions:
          - condition: trigger
            id:
              - Zeit_07_45_01_Uhr
          - condition: time
            weekday:
              - sat
              - sun
            after: "07:45:00"
        sequence:
          - alias: Shutter EG Büro Rollo Fenster
            choose:
              - conditions:
                  - condition: state
                    entity_id: input_boolean.shutter_eg_buero_rollo_fenster_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id:
                        - cover.shutter_eg_buero_rollo_fenster
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter EG Diele 1 Rollo Fenster
            choose:
              - conditions:
                  - condition: state
                    entity_id: input_boolean.shutter_eg_diele_rollo_fenster_1_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id:
                        - cover.shutter_eg_diele_rollo_fenster_1
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter EG Diele 2 Rollo Fenster
            choose:
              - conditions:
                  - condition: state
                    entity_id: input_boolean.shutter_eg_diele_rollo_fenster_2_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id:
                        - cover.shutter_eg_diele_rollo_fenster_2
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter EG WC Rollo Fenster
            choose:
              - conditions:
                  - condition: state
                    entity_id: input_boolean.shutter_eg_wc_rollo_fenster_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id:
                        - cover.shutter_eg_wc_rollo_fenster
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter EG Küche Rollo Fenster
            choose:
              - conditions:
                  - condition: state
                    entity_id: input_boolean.shutter_eg_kueche_rollo_fenster_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id:
                        - cover.shutter_eg_kueche_rollo_fenster
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter EG Küche Rollo Tür
            choose:
              - conditions:
                  - condition: state
                    entity_id: input_boolean.shutter_eg_kueche_rollo_tuer_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id:
                        - cover.shutter_eg_kueche_rollo_tuer
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter EG Esszimmer Rollo Fenster
            choose:
              - conditions:
                  - condition: state
                    entity_id: >-
                      input_boolean.shutter_eg_esszimmer_rollo_fenster_automation
                    state: "on"
                sequence:
                  - action: cover.open_cover
                    metadata: {}
                    data: {}
                    target:
                      entity_id:
                        - cover.shutter_eg_esszimmer_rollo_fenster
          - delay:
              hours: 0
              minutes: 0
              seconds: 1
              milliseconds: 0
            enabled: false
          - alias: Shutter EG Esszimmer Rollo Terrassentür
            choose:
              - conditions:
                  - condition: state
                    entity_id: >-
                      
.
.
.
.
.                      
mode: single

Automation Lowering roller shutters in the evening based on predefined conditions:

alias: "# Rolladen abends schliessen #"
description: ""
triggers:
  - alias: Trigger bei Sonnenuntergang (offset 00:00:01)
    trigger: sun
    event: sunset
    offset: "00:00:01"
    id: Sonnenuntergang
  - alias: Trigger um 19:00:01
    trigger: time
    at: "19:01:00"
    id: 19 Uhr
conditions:
  - condition: and
    conditions:
      - condition: time
        after: "19:00:00"
      - condition: sun
        after: sunset
actions:
  - alias: EG Diele-Fenster 1
    if:
      - condition: state
        entity_id: input_boolean.shutter_eg_diele_rollo_fenster_1_automation
        state: "on"
    then:
      - action: cover.close_cover
        metadata: {}
        data: {}
        target:
          entity_id: cover.shutter_eg_diele_rollo_fenster_1
  - delay:
      hours: 0
      minutes: 0
      seconds: 1
      milliseconds: 0
    enabled: false
  - alias: EG Diele-Fenster 2
    if:
      - condition: state
        entity_id: input_boolean.shutter_eg_diele_rollo_fenster_2_automation
        state: "on"
    then:
      - action: cover.close_cover
        metadata: {}
        data: {}
        target:
          entity_id: cover.shutter_eg_diele_rollo_fenster_2
  - delay:
      hours: 0
      minutes: 0
      seconds: 1
      milliseconds: 0
    enabled: false
  - alias: EG WC-Fenster
    if:
      - condition: state
        entity_id: input_boolean.shutter_eg_wc_rollo_fenster_automation
        state: "on"
    then:
      - action: cover.close_cover
        metadata: {}
        data: {}
        target:
          entity_id: cover.shutter_eg_wc_rollo_fenster
  - delay:
      hours: 0
      minutes: 0
      seconds: 1
      milliseconds: 0
    enabled: false
  - alias: EG Büro-Fenster
    if:
      - condition: state
        entity_id: input_boolean.shutter_eg_buero_rollo_fenster_automation
        state: "on"
    then:
      - action: cover.close_cover
        metadata: {}
        data: {}
        target:
          entity_id: cover.shutter_eg_buero_rollo_fenster
  - delay:
      hours: 0
      minutes: 0
      seconds: 1
      milliseconds: 0
    enabled: false
  - alias: EG Küchen-Fenster
    if:
      - condition: state
        entity_id: input_boolean.shutter_eg_kueche_rollo_fenster_automation
        state: "on"
    then:
      - action: cover.close_cover
        metadata: {}
        data: {}
        target:
          entity_id: cover.shutter_eg_kueche_rollo_fenster
  - delay:
      hours: 0
      minutes: 0
      seconds: 1
      milliseconds: 0
    enabled: false
  - alias: EG Küchen-Tür
    if:
      - condition: or
        conditions:
          - alias: Wenn gekippt ist
            condition: state
            entity_id: sensor.eg_kueche_tuer_auf_zu_gekippt
            state: gekippt
            attribute: Fenster_Status
          - alias: Wenn geschlossen ist
            condition: state
            entity_id: sensor.eg_kueche_tuer_auf_zu_gekippt
            state: geschlossen
            attribute: Fenster_Status
      - condition: state
        entity_id: input_boolean.shutter_eg_kueche_rollo_tuer_automation
        state: "on"
    then:
      - action: cover.close_cover
        metadata: {}
        data: {}
        target:
          entity_id: cover.shutter_eg_kueche_rollo_tuer
  - delay:
      hours: 0
      minutes: 0
      seconds: 1
      milliseconds: 0
    enabled: false
  - alias: EG Esszimmer-Fenster
    if:
      - condition: state
        entity_id: input_boolean.shutter_eg_esszimmer_rollo_fenster_automation
        state: "on"
    then:
      - action: cover.close_cover
        metadata: {}
        data: {}
        target:
          entity_id: cover.shutter_eg_esszimmer_rollo_fenster
  - delay:
      hours: 0
      minutes: 0
      seconds: 1
      milliseconds: 0
    enabled: false
  - alias: EG Esszimmer-Terrassentür
    if:
      - condition: or
        conditions:
          - alias: Wenn gekippt ist
            condition: state
            entity_id: sensor.eg_esszimmer_tuer_auf_zu_gekippt
            state: gekippt
            attribute: Fenster_Status
          - alias: Wenn geschlossen ist
            condition: state
            entity_id: sensor.eg_esszimmer_tuer_auf_zu_gekippt
            state: geschlossen
            attribute: Fenster_Status
      - condition: state
        entity_id: input_boolean.shutter_eg_esszimmer_rollo_terrassentuer_automation
        state: "on"
    then:
      - alias: Rollo Esszimmer Terrassentür schliessen
        action: cover.close_cover
        metadata: {}
        data: {}
        target:
          entity_id: cover.shutter_eg_esszimmer_rollo_terrassentuer
  - delay:
      hours: 0
      minutes: 0
      seconds: 1
      milliseconds: 0
    enabled: false
  - alias: EG Wohnzimmer-Terrassentür
    if:
      - condition: and
        conditions:
          - alias: Wenn EG Wohnzimmer Terrassentür geschlossen ist
            condition: state
            entity_id: sensor.eg_wohnzimmer_tuer_auf_zu
            state: geschlossen
            attribute: Fenster_Status
          - condition: state
            entity_id: input_boolean.shutter_eg_wohnzimmer_rollo_terrassentuer_automation
            state: "on"
    then:
      - alias: Rollo EG Wohnzimmer Terrassentür schliessen
        action: cover.close_cover
        metadata: {}
        data: {}
        target:
          entity_id: cover.shutter_eg_wohnzimmer_rollo_terrassentuer
  - delay:
      hours: 0
      minutes: 0
      seconds: 1
      milliseconds: 0
    enabled: false
  - alias: EG Wohnzimmer-Fenster
    if:
      - condition: state
        entity_id: input_boolean.shutter_eg_wohnzimmer_rollo_fenster_automation
        state: "on"
    then:
      - action: cover.close_cover
        metadata: {}
        data: {}
        target:
          entity_id: cover.shutter_eg_wohnzimmer_rollo_fenster
  - delay:
      hours: 0
      minutes: 0
      seconds: 1
      milliseconds: 0
    enabled: false
  - alias: EG Wohnzimmer-Terrassenfenster
    if:
      - condition: state
        entity_id: input_boolean.shutter_eg_wohnzimmer_rollo_terrassenfenster_automation
        state: "on"
    then:
      - action: cover.close_cover
        metadata: {}
        data: {}
        target:
          entity_id: cover.shutter_eg_wohnzimmer_rollo_terrassenfenster
  - delay:
      hours: 0
      minutes: 0
      seconds: 1
      milliseconds: 0
    enabled: false
  - alias: OG Treppenaufgang-Fenster
    if:
      - condition: state
        entity_id: input_boolean.shutter_og_treppenaufgang_rollo_fenster_automation
        state: "on"
    then:
      - action: cover.close_cover
        metadata: {}
        data: {}
        target:
          entity_id: cover.shutter_og_treppenaufgang_fenster
  - delay:
      hours: 0
      minutes: 0
      seconds: 1
      milliseconds: 0
    enabled: false
.
.
.
.


mode: single

One more thing: I also have a cover template for each roller shutter.

For example, this one.

######################################################################################
##     Shutter Wohnzimmer Terrassentür                                              ##
######################################################################################
- cover:
  - device_class: SHUTTER
    unique_id: shutter_eg_wohnzimmer_terrassentuer
    set_cover_position:
    - action: cover.set_cover_position
      target:
        entity_id:
        - cover.eg_wohnzimmer_rollo_terrassentuer
      data:
        position: '{{ position }}'
    stop_cover:
    - action: cover.stop_cover
      target:
        entity_id:
        - cover.eg_wohnzimmer_rollo_terrassentuer
    default_entity_id: cover.shutter_eg_wohnzimmer_terrassentuer
    icon: >
      {% set ent = 'cover.eg_wohnzimmer_rollo_terrassentuer' %}
      {% if states('input_boolean.shutter_eg_wohnzimmer_rollo_terrassentuer_automation') == 'off' %}
      fapro:shutter_auto_off
      {% elif states( ent ) == 'opening' %}
      fapro:shutter_opening
      {% elif states(ent) == 'closing' %}
      fapro:shutter_closing
      {% elif state_attr(ent,'current_position') | int() >=  0 and state_attr(ent,'current_position') | int() <=  9 %}
      fapro:shutter_0
      {% elif state_attr(ent,'current_position') | int() >= 10 and state_attr(ent,'current_position') | int() <= 19 %}
      fapro:shutter_10
      {% elif state_attr(ent,'current_position') | int() >= 20 and state_attr(ent,'current_position') | int() <= 29 %}
      fapro:shutter_20
      {% elif state_attr(ent,'current_position') | int() >= 30 and state_attr(ent,'current_position') | int() <= 39 %}
      fapro:shutter_30
      {% elif state_attr(ent,'current_position') | int() >= 40 and state_attr(ent,'current_position') | int() <= 49 %}
      fapro:shutter_40
      {% elif state_attr(ent,'current_position') | int() >= 50 and state_attr(ent,'current_position') | int() <= 59 %}
      fapro:shutter_50
      {% elif state_attr(ent,'current_position') | int() >= 60 and state_attr(ent,'current_position') | int() <= 69 %}
      fapro:shutter_60
      {% elif state_attr(ent,'current_position') | int() >= 70 and state_attr(ent,'current_position') | int() <= 79 %}
      fapro:shutter_70
      {% elif state_attr(ent,'current_position') | int() >= 80 and state_attr(ent,'current_position') | int() <= 89 %}
      fapro:shutter_80
      {% elif state_attr(ent,'current_position') | int() >= 90 and state_attr(ent,'current_position') | int() <= 99 %}
      fapro:shutter_90
      {% elif state_attr(ent,'current_position') | int() == 100 %}
      fapro:shutter_100
      {% endif %}
    name: Shutter EG Wohnzimmer Terrassentür
    state: '{{ states(''cover.eg_wohnzimmer_rollo_terrassentuer'') }}'
    position: '{{ state_attr(''cover.eg_wohnzimmer_rollo_terrassentuer'', ''current_position'') | int }}'

I don’t think the templates are related to the problem.