]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/primekb/prime_e/keymaps/default/keymap.c
Update KBD67 readme so that it mentions the KBD65 PCB (#5143)
[qmk_firmware.git] / keyboards / primekb / prime_e / keymaps / default / 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
28 void matrix_init_user(void) {
29   // set CapsLock LED to output and low
30   setPinOutput(B1);
31   writePinHigh(B1);
32   // set NumLock LED to output and low
33   setPinOutput(B2);
34   writePinHigh(B2);
35   // set ScrollLock LED to output and low
36   setPinOutput(B3);
37   writePinHigh(B3);
38 }
39
40 void matrix_scan_user(void) {
41
42 }
43
44
45 void led_set_user(uint8_t usb_led) {
46   if (IS_LED_ON(usb_led, USB_LED_NUM_LOCK)) {
47     writePinHigh(B2);
48   } else {
49     writePinLow(B2);
50   }
51   if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
52     writePinHigh(B1);
53   } else {
54     writePinLow(B1);
55   }
56 /*
57   if (IS_LED_ON(usb_led, USB_LED_SCROLL_LOCK)) {
58     writePinHigh(B3);
59   } else {
60     writePinLow(B3);
61   }*/
62
63 }
64
65 //function for layer indicator LED
66 uint32_t layer_state_set_user(uint32_t state)
67 {
68     if (biton32(state) == 1) {
69     writePinHigh(B3);
70         } else {
71                 writePinLow(B3);
72     }
73     return state;
74 }