Help with automation lights / 2 kights turn on from a switch

Hi,
that’s my first time here :slight_smile:

Components involved: Shelly plus 1PM ( switch ) and 2 stripLed dual White >> 2 controller
( 1 Gledopto and 1 MIlight) driven by the same Power Source (75w)

by the way, this a part of automation_test >>> “it works” but


button1_single_press:
  - choose:
      - conditions:
          - condition: state
            entity_id: switch.livingroom_switch
            state: 'off'
        sequence:
          - service: light.turn_on
            target:
              entity_id: light.Living1_wdhigh
            data:
              transition: 3
              kelvin: 3200
              brightness_pct: 15
          - service: light.turn_off
            target:
              entity_id: light.Living2_wdlow
          - service: switch.turn_on
            target:
              entity_id: switch.livingroom_switch
      - conditions:
          - condition: state
            entity_id: switch.livingroom_switch
            state: 'on'
        sequence:
          - service: light.turn_on
            target:
              entity_id: light.soggiorno1_wdhigh
            data:
              transition: 3
              brightness_pct: 15
              kelvin: 3000
    default: []

I got a tricky point on option1:
switch_turn on works but automation doesn’t turn_off the 2ndLight Living2
it seems it is such as “sleep mode”, the light appears ( from my view obviously ) in default_state setting I assume

After i did press the other Buttons i.e turn_off both lights not the the Switch
and press Button1 as at the begin : it works !!!

Any idea how to solve it?
Suggestions how to proceed are wellcome :slight_smile:

Sorry for the explanation non in technical way, I will learn as much as better next topic

Thanks in adv for all contributions