]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/hid_liber/hid_liber.c
[Keyboard] fixed pins for numpad_5x4 layout (#6311)
[qmk_firmware.git] / keyboards / hid_liber / hid_liber.c
1 /* Copyright 2012 Jun Wako <wakojun@gmail.com>: LED init
2  * Copyright 2017 Mathias Andersson <wraul@dbox.se>: Phantom config
3  * Copyright 2018 bakageta <amo@bakageta.com>
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 #include "hid_liber.h"
19
20 void matrix_init_kb(void) {
21     // put your keyboard start-up code here
22     // runs once when the firmware starts up
23     led_init_ports();
24     matrix_init_user();
25 }
26
27 void matrix_scan_kb(void) {
28     // put your looping keyboard code here
29     // runs every cycle (a lot)
30
31     matrix_scan_user();
32 }
33
34 bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
35     // put your per-action keyboard code here
36     // runs for every action, just before processing by the firmware
37
38     return process_record_user(keycode, record);
39 }
40
41 void led_init_ports(void) {
42     DDRB |= (1<<5) | (1<<6); // OUT
43 }
44
45 void led_set_kb(uint8_t usb_led) {
46     if (usb_led & (1<<USB_LED_CAPS_LOCK))
47         PORTB &= ~(1<<5);
48     else
49         PORTB |= (1<<5);
50
51     if (usb_led & (1<<USB_LED_SCROLL_LOCK))
52         PORTB &= ~(1<<6);
53     else
54         PORTB |= (1<<6);
55
56     led_set_user(usb_led);
57 }