]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/handwired/mechboards_micropad/keymaps/default/keymap.c
[Keyboard] Mechboards Micropad (#5368)
[qmk_firmware.git] / keyboards / handwired / mechboards_micropad / keymaps / default / keymap.c
1 /* Copyright 2019 Yiancar
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 uint8_t led_state = 1;
19
20 // Defines the keycodes used by our macros in process_record_user
21 enum custom_keycodes {
22   MECHBOARDURL = SAFE_RANGE,
23   QMKURL,
24   MKUK,
25   LEDCHANGE
26 };
27
28 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
29   [0] = LAYOUT( /* Base */
30     MECHBOARDURL,  QMKURL,  MKUK,  LEDCHANGE \
31   ),
32 };
33
34 bool process_record_user(uint16_t keycode, keyrecord_t *record) {
35   switch (keycode) {
36     case MECHBOARDURL:
37       if (record->event.pressed) {
38         // when keycode QMKBEST is pressed
39         SEND_STRING("https://mechboards.co.uk/" SS_TAP(X_ENTER));
40       } else {
41         // when keycode QMKBEST is released
42       }
43       break;
44     case QMKURL:
45       if (record->event.pressed) {
46         // when keycode QMKURL is pressed
47         SEND_STRING("https://qmk.fm/" SS_TAP(X_ENTER));
48       } else {
49         // when keycode QMKURL is released
50       }
51       break;
52     case MKUK:
53       if (record->event.pressed) {
54         // when keycode QMKURL is pressed
55         SEND_STRING("MKUK4 was amazing!");
56       } else {
57         // when keycode QMKURL is released
58       }
59       break;
60     case LEDCHANGE:
61       if (record->event.pressed) {
62         // when keycode QMKURL is pressed
63         led_state = !led_state;
64         writePin(F6, led_state);
65       } else {
66         // when keycode QMKURL is released
67       }
68       break;
69   }
70   return true;
71 }
72
73 void matrix_init_user(void) {
74   setPinOutput(F6);
75   writePinLow(F6);
76 }
77
78 void matrix_scan_user(void) {
79
80 }
81
82 void led_set_user(uint8_t usb_led) {
83
84 }