Hi folks - I have a 4x4 LED/button matrix setup for drum pads. Here's what I'm looking to set up (but can't)...
All RGB LED's are a different color, always on but dimmed to lowest intensity
When the respective button is pressed (or note received), the LED brightness changes to full intensity
I've tried a lot of different configs, and I can get the led's to stay dimmed until a button press, but... the color doesn't change. All the LED's stay red. The config below is what I have now:
RESET_HW
LCD "%C@(1:1:1)v1.0"
DebounceCtr 255
### SR ###
DIN_MATRIX n=1 rows=4 inverted=0 sr_dout_sel1=1 sr_din1=1 button_emu_id_offset=1001
DOUT_MATRIX n=1 rows=4 inverted=0 sr_dout_sel1=1 sr_dout_r1=3 sr_dout_g1=4 sr_dout_b1=5 led_emu_id_offset=1001
### Buttons ###
# LED's
EVENT_LED id= 1001 hw_id=1001 bank=1 range=map1 dimmed=1 fwd_to_lcd=1 lcd_pos=1:20:1 label="^std_led"
EVENT_LED id= 1002 hw_id=1002 bank=1 range=map1 dimmed=1 fwd_to_lcd=1 lcd_pos=1:20:1 label="^std_led"
EVENT_LED id= 1003 hw_id=1003 bank=1 range=map1 dimmed=1 fwd_to_lcd=1 lcd_pos=1:20:1 label="^std_led"
EVENT_LED id= 1004 hw_id=1004 bank=1 range=map1 dimmed=1 fwd_to_lcd=1 lcd_pos=1:20:1 label="^std_led"
# Bank 1
EVENT_BUTTON id=1001 hw_id=1001 bank=1 fwd_id=LED:1001 fwd_to_lcd=1 type=NoteOn key=36 chn=1 rgb=15:0:0 lcd_pos=1:33:2 label="%3i %N@(1:1:2)%B"
EVENT_BUTTON id=1002 hw_id=1002 bank=1 fwd_id=LED:1002 fwd_to_lcd=1 type=NoteOn key=37 chn=1 rgb=15:2:0 lcd_pos=1:33:2 label="%3i %N@(1:2:2)%B"
EVENT_BUTTON id=1003 hw_id=1003 bank=1 fwd_id=LED:1003 fwd_to_lcd=1 type=NoteOn key=38 chn=1 rgb=15:8:0 lcd_pos=1:33:2 label="%3i %N@(1:3:2)%B"
EVENT_BUTTON id=1004 hw_id=1004 bank=1 fwd_id=LED:1004 fwd_to_lcd=1 type=NoteOn key=39 chn=1 rgb=12:12:0 lcd_pos=1:33:2 label="%3i %N@(1:4:2)%B"
MAP1 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
What am I doing wrong, or is there a better way to do this?