Help with one button dimmer node

Hi, I’m using one-button-dimmer node for my ikea remote to dim my lights
Before my ha crashed along with my node red flows backup, I used to able to get it working but I can’t recall exactly how I did it
Could anyone check what I’m missing?

When I hold the button and release, i can see the payload number increasing but no changes with my lights.

[{"id":"186ab4a895188684","type":"mqtt in","z":"36edc30d97569929","name":"","topic":"zigbee2mqtt/0x90fd9ffffe5a4bee/action","qos":"2","datatype":"auto","broker":"da8d15474208fac9","nl":false,"rap":true,"rh":0,"inputs":0,"x":210,"y":2640,"wires":[["e8e1da4977613f89"]]},{"id":"e8e1da4977613f89","type":"switch","z":"36edc30d97569929","name":"","property":"payload","propertyType":"msg","rules":[{"t":"eq","v":"toggle","vt":"str"},{"t":"eq","v":"brightness_up_click","vt":"str"},{"t":"eq","v":"brightness_up_hold","vt":"str"},{"t":"eq","v":"brightness_up_release","vt":"str"},{"t":"eq","v":"brightness_down_click","vt":"str"},{"t":"eq","v":"brightness_down_hold","vt":"str"},{"t":"eq","v":"brightness_down_release","vt":"str"},{"t":"eq","v":"arrow_right_click","vt":"str"},{"t":"eq","v":"arrow_right_hold","vt":"str"},{"t":"eq","v":"arrow_right_release","vt":"str"},{"t":"eq","v":"arrow_left_click","vt":"str"},{"t":"eq","v":"arrow_left_hold","vt":"str"},{"t":"eq","v":"arrow_left_release","vt":"str"}],"checkall":"true","repair":false,"outputs":13,"x":470,"y":2660,"wires":[["f20b44f713cca01e"],["a7f7de50e5a24590"],["be4c4c27a30829f9"],[],["16093a60404880bc"],["38287aef4026b1d7"],["38287aef4026b1d7"],["c430d97a3e36bf7d"],["d0c43705174f4c6d"],[],["1448ac6fdf80f88d"],[],[]]},{"id":"38287aef4026b1d7","type":"one-button-dimmer","z":"36edc30d97569929","name":"Dim Up","interval":200,"step":5,"minValue":"2","maxValue":100,"startCommand":"brightness_down_hold","stopCommand":"brightness_down_release","x":940,"y":2880,"wires":[["a84a8d0d8fc22b37","c68b8a732134dd79"]]},{"id":"a84a8d0d8fc22b37","type":"api-call-service","z":"36edc30d97569929","name":"Night Lamp","server":"f4149317.d3794","version":5,"debugenabled":false,"domain":"light","service":"turn_on","areaId":[],"deviceId":[],"entityId":["light.gu10_bulb4"],"data":"","dataType":"jsonata","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","x":1130,"y":2880,"wires":[[]]},{"id":"c68b8a732134dd79","type":"debug","z":"36edc30d97569929","name":"","active":true,"tosidebar":true,"console":true,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":1160,"y":2820,"wires":[]},{"id":"da8d15474208fac9","type":"mqtt-broker","name":"MQTT hass","broker":"192.168.1.40","port":"1883","clientid":"","autoConnect":true,"usetls":false,"protocolVersion":"4","keepalive":"60","cleansession":true,"birthTopic":"","birthQos":"0","birthPayload":"","birthMsg":{},"closeTopic":"","closeQos":"0","closePayload":"","closeMsg":{},"willTopic":"","willQos":"0","willPayload":"","willMsg":{},"sessionExpiry":""},{"id":"f4149317.d3794","type":"server","name":"Home Assistant","version":5,"addon":true,"rejectUnauthorizedCerts":true,"ha_boolean":"y|yes|true|on|home|open","connectionDelay":true,"cacheJson":true,"heartbeat":false,"heartbeatInterval":30,"areaSelector":"friendlyName","deviceSelector":"friendlyName","entitySelector":"friendlyName","statusSeparator":"at: ","statusYear":"hidden","statusMonth":"short","statusDay":"numeric","statusHourCycle":"h23","statusTimeFormat":"h:m","enableGlobalContextStore":true}]

It looks like you’re using a one-button-dimmer node in your flow, which is used to control the brightness of a light by pressing and holding a button on a remote control. This node appears to be configured correctly, but it may not be receiving the correct input from the switch node that precedes it.

The switch node you have configured is set up to listen for messages on the zigbee2mqtt/0x90fd9ffffe5a4bee/action topic, and to route those messages to one of 13 different outputs depending on the value of the payload property in the incoming message. In order for the one-button-dimmer node to receive the correct input, the switch node needs to receive a message on the zigbee2mqtt/0x90fd9ffffe5a4bee/action topic with a payload value of either brightness_up_hold or brightness_down_hold.

If you’re not seeing any changes in the brightness of your lights when you press and hold the button on your remote control, it’s possible that the messages being sent to the switch node do not have the expected payload values. You can verify this by adding a debug node after the switch node and inspecting the output to see what values are being received. You can then adjust the rules in the switch node to route those messages to the appropriate output.