]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/novelpad/keymaps/default/keymap.c
487a3778320d05a1ac1876d3880e2c33ad355f3d
[qmk_firmware.git] / keyboards / novelpad / keymaps / default / keymap.c
1 /*
2 Copyright 2018 Cole Markham
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17 #include QMK_KEYBOARD_H
18
19 enum custom_keycodes {
20   BL = SAFE_RANGE,
21   WK_RED,
22   WK_GREEN,
23   WK_BLUE
24 };
25
26 const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
27
28   [0] = LAYOUT(
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   ),
35
36   [1] = LAYOUT(
37     _______, BL,      RGB_MODE_SWIRL, RESET,
38     RGB_TOG, RGB_MOD, RGB_MODE_PLAIN, RGB_MODE_SNAKE,
39     RGB_HUI, RGB_SAI, RGB_VAI,        RGB_MODE_KNIGHT,
40     RGB_HUD, RGB_SAD, RGB_VAD,        RGB_MODE_XMAS,
41     _______, WK_RED,  WK_GREEN,       WK_BLUE
42   ),
43
44 };
45
46 const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) {
47   return MACRO_NONE ;
48 }
49
50 void matrix_init_user(void) {
51
52   rgblight_setrgb(0,255,0);
53 }
54
55 void matrix_scan_user(void) {
56 }
57
58 bool process_record_user(uint16_t keycode, keyrecord_t *record) {
59   switch (keycode) {
60   case BL:
61     if (record->event.pressed) {
62 #ifdef BACKLIGHT_ENABLE
63       backlight_step();
64 #endif
65     }
66     return false;
67     break;
68   case WK_RED:
69       if (record->event.pressed) {
70         rgblight_show_solid_color(0xFF, 0, 0);
71       } else {
72         rgblight_show_solid_color(0xFF, 0xFF, 0xFF);
73       }
74       return false;
75       break;
76     case WK_GREEN:
77       if (record->event.pressed) {
78         rgblight_show_solid_color(0, 0xFF, 0);
79       } else {
80         rgblight_show_solid_color(0xFF, 0xFF, 0xFF);
81       }
82       return false;
83       break;
84     case WK_BLUE:
85       if (record->event.pressed) {
86         rgblight_show_solid_color(0, 0, 0xFF);
87       } else {
88         rgblight_show_solid_color(0xFF, 0xFF, 0xFF);
89       }
90       return false;
91       break;
92   }
93   return true;
94 }
95
96 void led_set_user(uint8_t usb_led) {
97
98   if (usb_led & (1 << USB_LED_NUM_LOCK)) {
99
100   } else {
101
102   }
103
104   if (usb_led & (1 << USB_LED_CAPS_LOCK)) {
105
106   } else {
107
108   }
109
110   if (usb_led & (1 << USB_LED_SCROLL_LOCK)) {
111
112   } else {
113
114   }
115
116   if (usb_led & (1 << USB_LED_COMPOSE)) {
117
118   } else {
119
120   }
121
122   if (usb_led & (1 << USB_LED_KANA)) {
123
124   } else {
125
126   }
127
128 }