Dim light from remote?

I have a ZME_WALLC-S (Z-Wave) remote that sends scenes id, it has four buttons and it sendes different id depending if the button is pressed long or short press.

I have made an automation to turn on/off the light and now I would like to make an automation to dim, but I can’t find how to do that. so wonder if anyone could help me.

this is how my automation for turn on the light looks like.

 alias: Switch test
  trigger:
    platform: event
    event_type: zwave.scene_activated
    event_data:
      entity_id: zwave.zwaveme_zme_wallcs_secure_wall_controller_1
      scene_id: 11
  action:
    service: light.turn_on
    entity_id: light.livingroom_floor

So how should I do to make an automation to dim the light with the remote?

Basically use what you have now but add the following at the bottom:

Data:
  Brightness: 127

That will do it. Note that brightness is on a scale from 0 to 255, so the 127 I used is 50% brightness.