]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/novelpad/keymaps/default/keymap.c
59cc1adc8632687813eb5326485613e72767c989
[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 KEYMAP(
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 KEYMAP(
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
45 const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) {
46   return MACRO_NONE ;
47 }
48
49 void matrix_init_user(void) {
50
51   rgblight_setrgb(0,255,0);
52 }
53
54 void matrix_scan_user(void) {
55 }
56
57 bool 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
95 void 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 }