]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/clueboard/2x1800/2x1800.c
Clueboard refresh (#4902)
[qmk_firmware.git] / keyboards / clueboard / 2x1800 / 2x1800.c
1 /* Copyright 2017 Zach White <skullydazed@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 "2x1800.h"
17
18 void matrix_init_kb(void) {
19         // Set our LED pins as output
20         DDRB |= (1<<4);  // Numlock
21         DDRB |= (1<<5);  // Capslock
22         DDRB |= (1<<6);  // Scroll Lock
23
24         // Run the keymap level init
25         matrix_init_user();
26 }
27
28 void matrix_scan_kb(void) {
29         matrix_scan_user();
30 }
31
32 bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
33         return process_record_user(keycode, record);
34 }
35
36 void led_set_kb(uint8_t usb_led) {
37   // Toggle numlock as needed
38         if (usb_led & (1<<USB_LED_NUM_LOCK)) {
39                 PORTB |= (1<<4);
40         } else {
41                 PORTB &= ~(1<<4);
42         }
43
44   // Toggle capslock as needed
45         if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
46                 PORTB |= (1<<5);
47         } else {
48                 PORTB &= ~(1<<5);
49         }
50
51         // Toggle scrolllock as needed
52         if (usb_led & (1<<USB_LED_SCROLL_LOCK)) {
53                 PORTB |= (1<<6);
54         } else {
55                 PORTB &= ~(1<<6);
56         }
57 }