aboutsummaryrefslogtreecommitdiff
path: root/keyboards/mechlovin/infinity87/rev2/rev2.c
diff options
context:
space:
mode:
authormechlovin <57231893+mechlovin@users.noreply.github.com>2021-04-09 11:48:30 -0700
committerGitHub <noreply@github.com>2021-04-09 20:48:30 +0200
commitf744e22b4944c4e8e5e71a4eb424dd4619c3e57d (patch)
tree71dd02ac6eda2304e6acabd902b94abdd9bd568a /keyboards/mechlovin/infinity87/rev2/rev2.c
parent1a913aa12eda0c62faba160dad55befeafdf4dc0 (diff)
downloadqmk_firmware-f744e22b4944c4e8e5e71a4eb424dd4619c3e57d.tar.gz
qmk_firmware-f744e22b4944c4e8e5e71a4eb424dd4619c3e57d.zip
Add TH1800 PCB, Hex6C PCB, Rogue87 PCB, Rouge87 PCB, Infinity87 series (#11977)
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Erovia <Erovia@users.noreply.github.com> Co-authored-by: vuhopkep <boy9x0@gmail.com>
Diffstat (limited to 'keyboards/mechlovin/infinity87/rev2/rev2.c')
-rw-r--r--keyboards/mechlovin/infinity87/rev2/rev2.c57
1 files changed, 57 insertions, 0 deletions
diff --git a/keyboards/mechlovin/infinity87/rev2/rev2.c b/keyboards/mechlovin/infinity87/rev2/rev2.c
new file mode 100644
index 000000000..5a92f8bec
--- /dev/null
+++ b/keyboards/mechlovin/infinity87/rev2/rev2.c
@@ -0,0 +1,57 @@
1/* Copyright 2020 Team Mechlovin'
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
17#include "rev2.h"
18
19void matrix_init_kb(void) {
20 matrix_init_user();
21 led_init_ports();
22};
23void led_init_ports(void) {
24 setPinOutput(A5);
25 setPinOutput(A6);
26 setPinOutput(A7);
27 setPinOutput(C7);
28 setPinOutput(C6);
29
30}
31
32layer_state_t layer_state_set_kb(layer_state_t state) {
33 state = layer_state_set_user(state);
34 writePinHigh(C6);
35 writePinHigh(C7);
36 writePinHigh(A7);
37 writePinHigh(A6);
38 writePinHigh(A5);
39 switch (get_highest_layer(state)) {
40 case 0:
41 writePinLow(C6);
42 break;
43 case 1:
44 writePinLow(C7);
45 break;
46 case 2:
47 writePinLow(A7);
48 break;
49 case 3:
50 writePinLow(A6);
51 break;
52 case 4:
53 writePinLow(A5);
54 break;
55 }
56 return state;
57}