]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/kbdfans/kbd8x_mk2/kbd8x_mk2.c
[Keyboard] Add support for KBD8X MKII (#6033)
[qmk_firmware.git] / keyboards / kbdfans / kbd8x_mk2 / kbd8x_mk2.c
1 /* Copyright 2019 Ryota Goto
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 "kbd8x_mk2.h"
17
18 void matrix_init_kb(void) {  
19
20   // Indicator pins
21   // B2 - Scroll Lock
22   // E6 - Caps Lock
23   // Sinking setup - 5V -> LED/Resistor -> Pin
24   
25   setPinOutput(B2);
26   setPinOutput(E6);
27
28   matrix_init_user();
29 }
30
31 void led_set_kb(uint8_t usb_led) {
32   
33   // Toggle indicator LEDs
34   // Since they are a sinking setup, write HIGH to DISABLE, LOW to ENABLE
35   
36   if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
37     writePinLow(E6);
38   } else {
39     writePinHigh(E6);
40   }
41   
42   if (IS_LED_ON(usb_led, USB_LED_SCROLL_LOCK)) {
43     writePinLow(B2);
44   } else {
45     writePinHigh(B2);
46   }
47
48   led_set_user(usb_led);
49 }
50
51 // Optional override functions below.
52 // You can leave any or all of these undefined.
53 // These are only required if you want to perform custom actions.
54
55 /*
56
57 void matrix_scan_kb(void) {
58   // put your looping keyboard code here
59   // runs every cycle (a lot)
60
61   matrix_scan_user();
62 }
63
64 bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
65   // put your per-action keyboard code here
66   // runs for every action, just before processing by the firmware
67
68   return process_record_user(keycode, record);
69 }
70
71 */