Nothing happens Hue Wall switch (ZHA)

Im pretty new to HA, i have added severall units with success but i cant get Hue wall switch to work,
i can see events when i press buttons like this:
Remote Button Short Release - Turn On event was fired with arguments: {‘button’: ‘left’, ‘press_type’: ‘short_release’, ‘command_id’: 0, ‘duration’: 1, ‘args’: [1, 3145728, 2, 33, 1]}

Remote Button Short Press - Turn On event was fired with arguments: {‘button’: ‘left’, ‘press_type’: ‘press’, ‘command_id’: 0, ‘duration’: 1, ‘args’: [1, 3145728, 0, 33, 1]}

I have, changed value to Doubble rocker on the attribute, But when im running the blueprint and add triggers nothinh happens when i press the buttons.

Which wall switch is this? There are several. You also don’t say how you’re integrating it - Zigbee or one of the Hue integrations?

You’re getting an event, so it’s working. Set aside the blueprint to start with and try a simple automation:

triggers:
  - device_id: <your device id>
    domain: zha
    type: remote_button_short_release
    subtype: turn_on
    trigger: device
  - device_id: <your device id>
    domain: zha
    type: remote_button_short_release
    subtype: turn_off
    trigger: device
conditions: []
actions:
  - action: light.toggle
    metadata: {}
    data: {}
    target:
      entity_id:
        - light.<your_light>
mode: single