aboutsummaryrefslogtreecommitdiff
path: root/keyboards/sol/sol.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/sol/sol.c')
-rw-r--r--keyboards/sol/sol.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/keyboards/sol/sol.c b/keyboards/sol/sol.c
index a65d4c15f..5945cc60a 100644
--- a/keyboards/sol/sol.c
+++ b/keyboards/sol/sol.c
@@ -1,20 +1 @@
1#include "sol.h" #include "sol.h"
2
3#if defined(RGB_MATRIX_ENABLE)
4uint8_t rgb_matrix_map_row_column_to_led_kb(uint8_t row, uint8_t column, uint8_t *led_i) {
5 if (row == 4 && column == 5) {
6 led_i[0] = 33;
7 return 1;
8 } else if (row == 4 && column == 6) {
9 led_i[0] = 34;
10 return 1;
11 } else if (row == 10 && column == 5) {
12 led_i[0] = 68;
13 return 1;
14 } else if (row == 10 && column == 6) {
15 led_i[0] = 69;
16 return 1;
17 }
18 return 0;
19}
20#endif