]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/planck/ez/ez.c
Adds the Planck EZ, 3737 RGB, fixes out-of-tune notes (#5532)
[qmk_firmware.git] / keyboards / planck / ez / ez.c
1 /* Copyright 2018 Jack Humbert <jack.humb@gmail.com>
2  *
3  * This program is free software: you can redistribute it and/or modify
4  * it under the terms of the GNU General Public License as published by
5  * the Free Software Foundation, either version 2 of the License, or
6  * (at your option) any later version.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15  */
16 #include "ez.h"
17
18 const is31_led g_is31_leds[DRIVER_LED_TOTAL] = {
19 /* Refer to IS31 manual for these locations
20  *   driver
21  *   |  R location
22  *   |  |      G location
23  *   |  |      |      B location
24  *   |  |      |      | */
25     {0, A_12,  B_12,  C_12},
26     {0, A_11,  B_11,  C_11},
27     {0, A_10,  B_10,  C_10},
28     {0, A_9,   B_9,   C_9},
29     {0, A_8,   B_8,   C_8},
30     {0, A_7,   B_7,   C_7},
31
32     {0, G_12,  H_12,  I_12},
33     {0, G_11,  H_11,  I_11},
34     {0, G_10,  H_10,  I_10},
35     {0, G_9,   H_9,   I_9},
36     {0, G_8,   H_8,   I_8},
37     {0, G_7,   H_7,   I_7},
38
39     {0, A_6,   B_6,   C_6},
40     {0, A_5,   B_5,   C_5},
41     {0, A_4,   B_4,   C_4},
42     {0, A_3,   B_3,   C_3},
43     {0, A_2,   B_2,   C_2},
44     {0, A_1,   B_1,   C_1},
45
46     {0, G_6,   H_6,   I_6},
47     {0, G_5,   H_5,   I_5},
48     {0, G_4,   H_4,   I_4},
49     {0, G_3,   H_3,   I_3},
50     {0, G_2,   H_2,   I_2},
51     {0, G_1,   H_1,   I_1},
52
53     {0, D_12,  E_12,  F_12},
54     {0, D_11,  E_11,  F_11},
55     {0, D_10,  E_10,  F_10},
56     {0, D_9,   E_9,   F_9},
57     {0, D_8,   E_8,   F_8},
58     {0, D_7,   E_7,   F_7},
59
60     {0, J_12,  K_12,  L_12},
61     {0, J_11,  K_11,  L_11},
62     {0, J_10,  K_10,  L_10},
63     {0, J_9,   K_9,   L_9},
64     {0, J_8,   K_8,   L_8},
65     {0, J_7,   K_7,   L_7},
66
67     {0, D_6,   E_6,   F_6},
68     {0, D_5,   E_5,   F_5},
69     {0, D_4,   E_4,   F_4},
70     {0, D_3,   E_3,   F_3},
71     {0, D_2,   E_2,   F_2},
72     {0, D_1,   E_1,   F_1},
73
74     {0, J_6,   K_6,   L_6},
75     {0, J_5,   K_5,   L_5},
76     {0, J_4,   K_4,   L_4},
77     {0, J_3,   K_3,   L_3},
78     {0, J_2,   K_2,   L_2},
79
80 };
81
82 const rgb_led g_rgb_leds[DRIVER_LED_TOTAL] = {
83
84     /*{row | col << 4}
85       |             {x=0..224, y=0..64}
86       |              |                 modifier
87       |              |                 | */
88     {{0|(0<<4)},   {20.36*0, 21.33*0}, 1},
89     {{0|(1<<4)},   {20.36*1, 21.33*0}, 0},
90     {{0|(2<<4)},   {20.36*2, 21.33*0}, 0},
91     {{0|(3<<4)},   {20.36*3, 21.33*0}, 0},
92     {{0|(4<<4)},   {20.36*4, 21.33*0}, 0},
93     {{0|(5<<4)},   {20.36*5, 21.33*0}, 0},
94     {{4|(0<<4)},   {20.36*6, 21.33*0}, 0},
95     {{4|(1<<4)},   {20.36*7, 21.33*0}, 0},
96     {{4|(2<<4)},   {20.36*8, 21.33*0}, 0},
97     {{4|(3<<4)},   {20.36*9, 21.33*0}, 0},
98     {{4|(4<<4)},  {20.36*10,21.33*0}, 0},
99     {{4|(5<<4)},  {20.36*11,21.33*0}, 1},
100
101     {{1|(0<<4)},   {20.36*0, 21.33*1}, 1},
102     {{1|(1<<4)},   {20.36*1, 21.33*1}, 0},
103     {{1|(2<<4)},   {20.36*2, 21.33*1}, 0},
104     {{1|(3<<4)},   {20.36*3, 21.33*1}, 0},
105     {{1|(4<<4)},   {20.36*4, 21.33*1}, 0},
106     {{1|(5<<4)},   {20.36*5, 21.33*1}, 0},
107     {{5|(0<<4)},   {20.36*6, 21.33*1}, 0},
108     {{5|(1<<4)},   {20.36*7, 21.33*1}, 0},
109     {{5|(2<<4)},   {20.36*8, 21.33*1}, 0},
110     {{5|(3<<4)},   {20.36*9, 21.33*1}, 0},
111     {{5|(4<<4)},  {20.36*10,21.33*1}, 0},
112     {{5|(5<<4)},  {20.36*11,21.33*1}, 1},
113
114     {{2|(0<<4)},   {20.36*0, 21.33*2}, 1},
115     {{2|(1<<4)},   {20.36*1, 21.33*2}, 0},
116     {{2|(2<<4)},   {20.36*2, 21.33*2}, 0},
117     {{2|(3<<4)},   {20.36*3, 21.33*2}, 0},
118     {{2|(4<<4)},   {20.36*4, 21.33*2}, 0},
119     {{2|(5<<4)},   {20.36*5, 21.33*2}, 0},
120     {{6|(0<<4)},   {20.36*6, 21.33*2}, 0},
121     {{6|(1<<4)},   {20.36*7, 21.33*2}, 0},
122     {{6|(2<<4)},   {20.36*8, 21.33*2}, 0},
123     {{6|(3<<4)},   {20.36*9, 21.33*2}, 0},
124     {{6|(4<<4)},  {20.36*10,21.33*2}, 0},
125     {{6|(5<<4)},  {20.36*11,21.33*2}, 1},
126
127     {{3|(0<<4)},   {20.36*0, 21.33*3}, 1},
128     {{3|(1<<4)},   {20.36*1, 21.33*3}, 1},
129     {{3|(2<<4)},   {20.36*2, 21.33*3}, 1},
130     {{7|(3<<4)},   {20.36*3, 21.33*3}, 1},
131     {{7|(4<<4)},   {20.36*4, 21.33*3}, 1},
132     {{7|(5<<4)},   {20.36*5.5,21.33*3}, 0},
133     {{7|(0<<4)},   {20.36*7, 21.33*3}, 1},
134     {{7|(1<<4)},   {20.36*8, 21.33*3}, 1},
135     {{7|(2<<4)},   {20.36*9, 21.33*3}, 1},
136     {{3|(3<<4)},  {20.36*10,21.33*3}, 1},
137     {{3|(4<<4)},  {20.36*11,21.33*3}, 1}
138 };
139
140 void matrix_init_kb(void) {
141   matrix_init_user();
142
143   palSetPadMode(GPIOB, 8, PAL_MODE_OUTPUT_PUSHPULL);
144   palSetPadMode(GPIOB, 9, PAL_MODE_OUTPUT_PUSHPULL);
145
146   palClearPad(GPIOB, 8);
147   palClearPad(GPIOB, 9);
148 }
149
150 void matrix_scan_kb(void) {
151   matrix_scan_user();
152 }
153
154 uint32_t layer_state_set_kb(uint32_t state) {
155
156   palClearPad(GPIOB, 8);
157   palClearPad(GPIOB, 9);
158   state = layer_state_set_user(state);
159   uint8_t layer = biton32(state);
160   switch (layer) {
161       case 3:
162         palSetPad(GPIOB, 9);
163         break;
164       case 4:
165         palSetPad(GPIOB, 8);
166         break;
167       case 6:
168         palSetPad(GPIOB, 9);
169         palSetPad(GPIOB, 8);
170         break;
171       default:
172         break;
173     }
174     return state;
175 }