]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/primekb/prime_e/keymaps/via/keymap.c
Flesh out keymaps and some tweaks to indicators (#5608)
[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(3),  KC_N,     KC_M, KC_COMM, KC_DOT,  KC_SLSH, KC_LSFT,
23                 KC_LCTL,  KC_LALT,                    MO(2), MO(1),               KC_SPC, KC_RALT,                          KC_RGUI, KC_RCTL
24     ),
25
26     LAYOUT(
27                 KC_GRV,    KC_TRNS,   KC_TRNS,   KC_TRNS,   KC_TRNS,    KC_TRNS,          KC_TRNS,   KC_TRNS,    KC_UP,     KC_TRNS,   KC_MUTE,   KC_VOLD,   KC_VOLU,
28                 KC_CAPS,   KC_TRNS,   KC_TRNS,   KC_TRNS,   KC_TRNS,    KC_TRNS,          KC_TRNS,   KC_LEFT,    KC_DOWN,   KC_RIGHT,  KC_SCLN,   KC_BSLS,
29                 KC_TRNS,   KC_TRNS,   KC_TRNS,   KC_TRNS,   KC_TRNS,    KC_TRNS,          KC_TRNS,   KC_TRNS,    KC_TRNS,   KC_TRNS,   KC_TRNS,   KC_TRNS,   KC_TRNS,
30                 BL_TOGG,   BL_STEP,                         KC_TRNS,    KC_TRNS,                KC_TRNS,   KC_TRNS,                                     KC_TRNS,   KC_TRNS
31     ),
32
33     LAYOUT(
34                 KC_TRNS,  KC_1,      KC_2,      KC_3,      KC_4,       KC_5,             KC_6,      KC_7,     KC_8,    KC_9,    KC_0,      KC_MINS,  KC_EQL,
35                 KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,   KC_TRNS,    KC_TRNS,          KC_TRNS,   KC_P4,    KC_P5,   KC_P6,   KC_LBRC,   KC_RBRC,
36                 KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,   KC_TRNS,    KC_TRNS,          KC_TRNS,   KC_P1,    KC_P2,   KC_P3,   KC_TRNS,   KC_TRNS,  KC_TRNS,
37                 KC_TRNS,  KC_TRNS,                         KC_TRNS,    KC_TRNS,          KC_PENT,   KC_PDOT,                               KC_TRNS,  KC_TRNS
38     ),
39
40     LAYOUT(
41                 KC_TRNS,  KC_F1,     KC_F2,     KC_F3,     KC_F4,      KC_F5,            KC_F6,     KC_F7,    KC_F8,   KC_F9,   KC_F10,    KC_F11,   KC_F12,
42                 KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,   KC_TRNS,    KC_TRNS,          KC_TRNS,   KC_TRNS,  KC_TRNS, KC_TRNS, KC_TRNS,   KC_TRNS,
43                 KC_TRNS,  KC_TRNS,   KC_TRNS,   KC_TRNS,   KC_TRNS,    KC_TRNS,          KC_TRNS,   KC_TRNS,  KC_TRNS, KC_TRNS, KC_TRNS,   KC_TRNS,  KC_TRNS,
44                 KC_TRNS,  KC_TRNS,                         KC_TRNS,    KC_TRNS,          KC_TRNS,   KC_TRNS,                               KC_TRNS,  KC_TRNS
45     )
46 };
47
48 void matrix_init_user(void) {
49   // set CapsLock LED to output and low
50   setPinOutput(B1);
51   writePinLow(B1);
52   // set NumLock LED to output and low
53   setPinOutput(B2);
54   writePinLow(B2);
55   // set ScrollLock LED to output and low
56   setPinOutput(B3);
57   writePinLow(B3);
58 }
59
60 void matrix_scan_user(void) {
61
62 }
63
64
65 void led_set_user(uint8_t usb_led) {
66   if (IS_LED_ON(usb_led, USB_LED_NUM_LOCK)) {
67     writePinHigh(B2);
68   } else {
69     writePinLow(B2);
70   }
71   if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
72     writePinHigh(B1);
73   } else {
74     writePinLow(B1);
75   }
76 /*
77   if (IS_LED_ON(usb_led, USB_LED_SCROLL_LOCK)) {
78     writePinHigh(B3);
79   } else {
80     writePinLow(B3);
81   }*/
82
83 }
84
85 //function for layer indicator LED
86 uint32_t layer_state_set_user(uint32_t state)
87 {
88     if (biton32(state) == 1) {
89     writePinHigh(B3);
90         } else {
91                 writePinLow(B3);
92     }
93     return state;
94 }