Thanks, noted.
In a meantime - take a look here. I have added a scrap buttons and IR receiver from DVD player to LED strip and it works:
First button is On/Off, second and third are brightness (hold to increase/decrease, double click to set lowest/highest), fourth is a delayed turn off (for testing purposes, it turns off after few seconds).
With OpenBeken, you can add IRReceiver to any supported device, same goes with buttons.
Helpful post? Buy me a coffee.
In a meantime - take a look here. I have added a scrap buttons and IR receiver from DVD player to LED strip and it works:

SetButtonTimes 10 3 3
alias add_turnoff_event addRepeatingEvent 4 1 led_enableAll 0
addEventHandler OnHold 23 add_dimmer 10
addEventHandler OnHold 22 add_dimmer -10
addEventHandler OnDblClick 22 led_dimmer 5
addEventHandler OnDblClick 23 led_dimmer 100
addEventHandler OnClick 20 add_turnoff_event
addEventHandler2 IR_Samsung 0x707 0x62 add_dimmer 10
addEventHandler2 IR_Samsung 0x707 0x65 add_dimmer -10
addEventHandler2 IR_Samsung 0x707 0x61 led_enableAll 0
addEventHandler2 IR_Samsung 0x707 0x60 led_enableAll 1
First button is On/Off, second and third are brightness (hold to increase/decrease, double click to set lowest/highest), fourth is a delayed turn off (for testing purposes, it turns off after few seconds).

With OpenBeken, you can add IRReceiver to any supported device, same goes with buttons.