FT55 triggers Multiple automations

Hey,
I have two Ft55 switches but there is one problem when i press 1 switch it trigger all automations with similar parameters

configuration.yaml

binary_sensor:
  - platform: enocean
    name: livingroom_FT55    
    id: [0xFE,0xF8,0x79,0xFE]
    
  - platform: enocean
    name: bedroom_FT55
    id: [0xFE,0xF8,0x79,0x53]

automations.yaml

- id: at10009
  alias: livingroom switch up
  trigger:
    platform: event
    event_type: button_pressed
    event_data:
      id: [0xFE, 0xF8, 0x79, 0xFE]
      pushed: 0
      onoff: 0
  action:
  - service: light.turn_on
    entity_id: light.wohnzimmer
- id: at10010
  alias: livingroom switch down
  trigger:
    platform: event
    event_type: button_pressed
    event_data:
      id: [0xFE, 0xF8, 0x79, 0xFE]
      pushed: 0
      onoff: 1
  action:
  - service: light.turn_off
    entity_id: light.wohnzimmer      
      
- id: at10006
  alias: bedroom switch top left
  trigger:
    platform: event
    event_type: button_pressed
    event_data:
      id: [0xFE,0xF8,0x79,0x53]
      pushed: 0
      onoff: 0
      which: 1
  action:
  - service: light.toggle
    entity_id: light.schlafzimmer   
- id: at10007
  alias: bedroom switch bottom left
  trigger:
    platform: event
    event_type: button_pressed
    event_data:
      id: [0xFE,0xF8,0x79,0x53]
      pushed: 0
      onoff: 1
      which: 1
  action:
  - service: switch.toggle
    entity_id: switch.sonoff3

- id: at10008
  alias: bedroom switch right
  trigger:
    platform: event
    event_type: button_pressed
    event_data:
      id: [0xFE,0xF8,0x79,0x53]
      pushed: 0
      which: 0
  action:
    service_template: "{% if trigger.event.data.onoff %} homeassistant.turn_off {% else %} homeassistant.turn_on {%endif %}"
    entity_id: group.all_lights

when i now press the livingroom switch up the bedroom switch right will be triggered to. it seems like that the ids wouldnt be checked.
do you have any ideas what i could try?

thank you andre