]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/primekb/prime_e/keymaps/via/keymap.c
Update KBD67 readme so that it mentions the KBD65 PCB (#5143)
[qmk_firmware.git] / keyboards / primekb / prime_e / keymaps / via / keymap.c
1 /* Copyright 2018 Holten Campbell
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 QMK_KEYBOARD_H
17
18 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
19     LAYOUT(
20                 KC_ESC,   KC_Q,     KC_W,     KC_E,   KC_R,    KC_T,          KC_Y,   KC_U,     KC_I, KC_O,    KC_P,    KC_DEL, KC_BSPC,
21                 KC_TAB,   KC_A,     KC_S,     KC_D,   KC_F,    KC_G,          KC_H,   KC_J,     KC_K, KC_L,    KC_QUOT, KC_ENT,
22                 KC_LSFT,  KC_Z,     KC_X,     KC_C,   KC_V,    KC_B,          MO(1),  KC_N,     KC_M, KC_COMM, KC_DOT,  KC_SLSH, KC_LSFT,
23                 KC_LCTL,  KC_LALT,                    KC_RBRC, MO(1),           KC_SPC, KC_MINS,                          KC_LGUI, TO(1)
24     )
25 };
26
27 void matrix_init_user(void) {
28   // set CapsLock LED to output and low
29   setPinOutput(B1);
30   writePinHigh(B1);
31   // set NumLock LED to output and low
32   setPinOutput(B2);
33   writePinHigh(B2);
34   // set ScrollLock LED to output and low
35   setPinOutput(B3);
36   writePinHigh(B3);
37 }
38
39 void matrix_scan_user(void) {
40
41 }
42
43
44 void led_set_user(uint8_t usb_led) {
45   if (IS_LED_ON(usb_led, USB_LED_NUM_LOCK)) {
46     writePinHigh(B2);
47   } else {
48     writePinLow(B2);
49   }
50   if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
51     writePinHigh(B1);
52   } else {
53     writePinLow(B1);
54   }
55 /*
56   if (IS_LED_ON(usb_led, USB_LED_SCROLL_LOCK)) {
57     writePinHigh(B3);
58   } else {
59     writePinLow(B3);
60   }*/
61
62 }
63
64 //function for layer indicator LED
65 uint32_t layer_state_set_user(uint32_t state)
66 {
67     if (biton32(state) == 1) {
68     writePinHigh(B3);
69         } else {
70                 writePinLow(B3);
71     }
72     return state;
73 }