aboutsummaryrefslogtreecommitdiff
path: root/keyboards/novelpad/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/novelpad/keymaps/default/keymap.c')
-rwxr-xr-xkeyboards/novelpad/keymaps/default/keymap.c127
1 files changed, 127 insertions, 0 deletions
diff --git a/keyboards/novelpad/keymaps/default/keymap.c b/keyboards/novelpad/keymaps/default/keymap.c
new file mode 100755
index 000000000..59cc1adc8
--- /dev/null
+++ b/keyboards/novelpad/keymaps/default/keymap.c
@@ -0,0 +1,127 @@
1/*
2Copyright 2018 Cole Markham
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17#include QMK_KEYBOARD_H
18
19enum custom_keycodes {
20 BL = SAFE_RANGE,
21 WK_RED,
22 WK_GREEN,
23 WK_BLUE
24};
25
26const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
27
28KEYMAP(
29 KC_NLCK, KC_PSLS, KC_PAST, KC_ESC,
30 KC_P7, KC_P8, KC_P9, KC_PMNS,
31 KC_P4, KC_P5, KC_P6, KC_PPLS,
32 KC_P1, KC_P2, KC_P3, KC_TAB,
33 MO(1), KC_P0, KC_PDOT, KC_ENT),
34
35KEYMAP(
36 KC_TRNS, BL, RGB_MODE_SWIRL, RESET, \
37 RGB_TOG, RGB_MOD, RGB_MODE_PLAIN, RGB_MODE_SNAKE, \
38 RGB_HUI, RGB_SAI, RGB_VAI, RGB_MODE_KNIGHT, \
39 RGB_HUD , RGB_SAD, RGB_VAD, RGB_MODE_XMAS, \
40 KC_TRNS, WK_RED, WK_GREEN, WK_BLUE \
41 ),
42
43};
44
45const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) {
46 return MACRO_NONE ;
47}
48
49void matrix_init_user(void) {
50
51 rgblight_setrgb(0,255,0);
52}
53
54void matrix_scan_user(void) {
55}
56
57bool process_record_user(uint16_t keycode, keyrecord_t *record) {
58 switch (keycode) {
59 case BL:
60 if (record->event.pressed) {
61#ifdef BACKLIGHT_ENABLE
62 backlight_step();
63#endif
64 }
65 return false;
66 break;
67 case WK_RED:
68 if (record->event.pressed) {
69 rgblight_show_solid_color(0xFF, 0, 0);
70 } else {
71 rgblight_show_solid_color(0xFF, 0xFF, 0xFF);
72 }
73 return false;
74 break;
75 case WK_GREEN:
76 if (record->event.pressed) {
77 rgblight_show_solid_color(0, 0xFF, 0);
78 } else {
79 rgblight_show_solid_color(0xFF, 0xFF, 0xFF);
80 }
81 return false;
82 break;
83 case WK_BLUE:
84 if (record->event.pressed) {
85 rgblight_show_solid_color(0, 0, 0xFF);
86 } else {
87 rgblight_show_solid_color(0xFF, 0xFF, 0xFF);
88 }
89 return false;
90 break;
91 }
92 return true;
93}
94
95void led_set_user(uint8_t usb_led) {
96
97 if (usb_led & (1 << USB_LED_NUM_LOCK)) {
98
99 } else {
100
101 }
102
103 if (usb_led & (1 << USB_LED_CAPS_LOCK)) {
104
105 } else {
106
107 }
108
109 if (usb_led & (1 << USB_LED_SCROLL_LOCK)) {
110
111 } else {
112
113 }
114
115 if (usb_led & (1 << USB_LED_COMPOSE)) {
116
117 } else {
118
119 }
120
121 if (usb_led & (1 << USB_LED_KANA)) {
122
123 } else {
124
125 }
126
127}