aboutsummaryrefslogtreecommitdiff
path: root/keyboards/boston_meetup/2019/2019.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/boston_meetup/2019/2019.c')
-rw-r--r--keyboards/boston_meetup/2019/2019.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/keyboards/boston_meetup/2019/2019.c b/keyboards/boston_meetup/2019/2019.c
index 9baed223b..45c185549 100644
--- a/keyboards/boston_meetup/2019/2019.c
+++ b/keyboards/boston_meetup/2019/2019.c
@@ -21,17 +21,17 @@
21#ifdef RGB_MATRIX_ENABLE 21#ifdef RGB_MATRIX_ENABLE
22#include "rgblight.h" 22#include "rgblight.h"
23 23
24const rgb_led g_rgb_leds[DRIVER_LED_TOTAL] = { 24rgb_led g_rgb_leds[DRIVER_LED_TOTAL] = {
25 /*{row | col << 4} 25 /*{row | col << 4}
26 | {x=0..224, y=0..64} 26 | {x=0..224, y=0..64}
27 | | modifier 27 | | modifier
28 | | | */ 28 | | | */
29 {{1|(3<<4)}, {188, 16}, 0}, 29 {{1|(3<<4)}, {188, 16}, 4},
30 {{3|(3<<4)}, {187, 48}, 0}, 30 {{3|(3<<4)}, {187, 48}, 4},
31 {{4|(2<<4)}, {149, 64}, 0}, 31 {{4|(2<<4)}, {149, 64}, 4},
32 {{4|(1<<4)}, {112, 64}, 0}, 32 {{4|(1<<4)}, {112, 64}, 4},
33 {{3|(0<<4)}, {37, 48}, 0}, 33 {{3|(0<<4)}, {37, 48}, 4},
34 {{1|(0<<4)}, {38, 16}, 0} 34 {{1|(0<<4)}, {38, 16}, 4}
35}; 35};
36#endif 36#endif
37 37