aboutsummaryrefslogtreecommitdiff
path: root/keyboards/rocketboard_16/keymaps/default/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/rocketboard_16/keymaps/default/keymap.c')
-rw-r--r--keyboards/rocketboard_16/keymaps/default/keymap.c89
1 files changed, 89 insertions, 0 deletions
diff --git a/keyboards/rocketboard_16/keymaps/default/keymap.c b/keyboards/rocketboard_16/keymaps/default/keymap.c
new file mode 100644
index 000000000..b014e5039
--- /dev/null
+++ b/keyboards/rocketboard_16/keymaps/default/keymap.c
@@ -0,0 +1,89 @@
1/*
2Copyright 2020 Seth Bonner <fl3tching101@gmail.com>
3This program is free software: you can redistribute it and/or modify
4it under the terms of the GNU General Public License as published by
5the Free Software Foundation, either version 2 of the License, or
6(at your option) any later version.
7This program is distributed in the hope that it will be useful,
8but WITHOUT ANY WARRANTY; without even the implied warranty of
9MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10GNU General Public License for more details.
11You should have received a copy of the GNU General Public License
12along with this program. If not, see <http://www.gnu.org/licenses/>.
13*/
14#include QMK_KEYBOARD_H
15
16
17// Each layer gets a name for readability, which is then used in the keymap matrix below.
18// The underscores don't mean anything - you can have a layer called STUFF or any other name.
19// Layer names don't all need to be of the same length, obviously, and you can also skip them
20// entirely and just use numbers.
21#define _BASE 0
22
23// Use the following format to create custom key codes to make macros out of and such
24/*
25enum custom_keycodes {
26 FOO = SAFE_RANGE,
27};
28*/
29
30const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
31 [_BASE] = LAYOUT_default(
32 RGB_MODE_FORWARD, KC_NUMLOCK,
33 KC_KP_7, KC_KP_8, KC_KP_9, KC_DELETE,
34 KC_KP_4, KC_KP_5, KC_KP_6, KC_END,
35 KC_KP_1, KC_KP_2, KC_KP_3, KC_AUDIO_VOL_UP,
36 KC_KP_0, RGB_TOG, KC_AUDIO_MUTE, KC_AUDIO_VOL_DOWN
37 )
38};
39
40void encoder_update_user(uint8_t index, bool clockwise){
41 if(index == 0) { // first encoder
42 if(clockwise){
43 tap_code(KC_AUDIO_VOL_UP);
44 }else{
45 tap_code(KC_AUDIO_VOL_DOWN);
46 }
47 }else if(index == 1){ // second encoder
48 if(clockwise){
49 rgblight_increase_val();
50 }else{
51 rgblight_decrease_val();
52 }
53 }
54}
55
56#ifdef OLED_DRIVER_ENABLE
57
58static void render_logo(void) {
59 static const char PROGMEM qmk_logo[] = {
60 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8A, 0x8B, 0x8C, 0x8D, 0x8E, 0x8F, 0x90, 0x91, 0x92, 0x93, 0x94,
61 0xA0, 0xA1, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA, 0xAB, 0xAC, 0xAD, 0xAE, 0xAF, 0xB0, 0xB1, 0xB2, 0xB3, 0xB4,
62 0xC0, 0xC1, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xCB, 0xCC, 0xCD, 0xCE, 0xCF, 0xD0, 0xD1, 0xD2, 0xD3, 0xD4, 0x00
63 };
64
65 oled_write(qmk_logo, false);
66}
67
68oled_rotation_t oled_init_user(oled_rotation_t rotation) { return OLED_ROTATION_180; }
69
70void oled_task_user(void) {
71 uint8_t light_level = rgblight_get_val();
72 light_level = (uint8_t)(100.0 * ((float)light_level/(float)RGBLIGHT_LIMIT_VAL)); // Convert to %
73 char c_light_level[3];
74 itoa(light_level, c_light_level, 10);
75
76 render_logo(); // Render the QMK logo
77 oled_write_ln(PSTR(""), false); // Add a newline
78 // Host Keyboard LED Status
79 led_t led_state = host_keyboard_led_state();
80 oled_write(led_state.num_lock ? PSTR(" |NUM|") : PSTR(" | |"), false);
81 oled_write(led_state.caps_lock ? PSTR("|CAP|") : PSTR("| |"), false);
82 oled_write(led_state.scroll_lock ? PSTR("|SCR| ") : PSTR("| | "), false);
83
84 oled_write_ln(PSTR(""), false); // Add a newline
85 oled_write(PSTR(" BKLT: "), false);
86 oled_write(c_light_level, false);
87 oled_write_ln(PSTR("% "), false);
88}
89#endif