diff options
Diffstat (limited to 'keyboards/keybage/radpad/keymaps/default/keymap.c')
| -rw-r--r-- | keyboards/keybage/radpad/keymaps/default/keymap.c | 141 |
1 files changed, 141 insertions, 0 deletions
diff --git a/keyboards/keybage/radpad/keymaps/default/keymap.c b/keyboards/keybage/radpad/keymaps/default/keymap.c new file mode 100644 index 000000000..f5904150e --- /dev/null +++ b/keyboards/keybage/radpad/keymaps/default/keymap.c | |||
| @@ -0,0 +1,141 @@ | |||
| 1 | /* Copyright 2020 Brandon Schlack | ||
| 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 | enum layer_names { | ||
| 19 | _BASE = 0, | ||
| 20 | _FN | ||
| 21 | }; | ||
| 22 | |||
| 23 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||
| 24 | [_BASE] = LAYOUT_4x4_encoders( | ||
| 25 | KC_MUTE, KC_MPLY, | ||
| 26 | KC_PMNS, KC_P7, KC_P8, KC_P9, | ||
| 27 | KC_PPLS, KC_P4, KC_P5, KC_P6, | ||
| 28 | KC_BSPC, KC_P1, KC_P2, KC_P3, | ||
| 29 | KC_PENT, MO(_FN), KC_P0, KC_PDOT | ||
| 30 | ), | ||
| 31 | [_FN] = LAYOUT_4x4_encoders( | ||
| 32 | _______, _______, | ||
| 33 | KC_PSLS, KC_F21, KC_F22, KC_F23, | ||
| 34 | KC_PAST, KC_F18, KC_F19, KC_F20, | ||
| 35 | KC_NLCK, KC_F15, KC_F16, KC_F17, | ||
| 36 | RESET, _______, KC_F13, KC_F14 | ||
| 37 | ) | ||
| 38 | }; | ||
| 39 | |||
| 40 | void encoder_update_user(uint8_t index, bool clockwise) { | ||
| 41 | if (index == 0) { /* Left encoder */ | ||
| 42 | if (clockwise) { | ||
| 43 | tap_code16(KC_VOLU); | ||
| 44 | } else { | ||
| 45 | tap_code16(KC_VOLD); | ||
| 46 | } | ||
| 47 | } else if (index == 1) { /* Right encoder */ | ||
| 48 | if (clockwise) { | ||
| 49 | tap_code16(KC_MNXT); | ||
| 50 | } else { | ||
| 51 | tap_code16(KC_MPRV); | ||
| 52 | } | ||
| 53 | } | ||
| 54 | } | ||
| 55 | |||
| 56 | #ifdef OLED_DRIVER_ENABLE | ||
| 57 | static uint32_t oled_logo_timer = 0; | ||
| 58 | bool oled_logo_cleared = false; // Set to true if you don't want a logo at all | ||
| 59 | |||
| 60 | static void render_status(void) { | ||
| 61 | // Host Keyboard Layer Status | ||
| 62 | oled_write_P(PSTR("Layer: "), false); | ||
| 63 | |||
| 64 | switch (get_highest_layer(layer_state)) { | ||
| 65 | case _BASE: | ||
| 66 | oled_write_P(PSTR("Numpad\n"), false); | ||
| 67 | break; | ||
| 68 | case _FN: | ||
| 69 | oled_write_P(PSTR("Macropad\n"), false); | ||
| 70 | break; | ||
| 71 | default: | ||
| 72 | // Or use the write_ln shortcut over adding '\n' to the end of your string | ||
| 73 | oled_write_ln_P(PSTR("Some Other Layer"), false); | ||
| 74 | } | ||
| 75 | |||
| 76 | // Empty Line | ||
| 77 | oled_write_ln_P(PSTR(" "), false); | ||
| 78 | |||
| 79 | // Host Keyboard LED Status | ||
| 80 | led_t led_state = host_keyboard_led_state(); | ||
| 81 | oled_write_P(led_state.num_lock ? PSTR(" NUM ") : PSTR(" "), led_state.num_lock); | ||
| 82 | oled_write_P(led_state.caps_lock ? PSTR(" CAP ") : PSTR(" "), led_state.caps_lock); | ||
| 83 | oled_write_P(led_state.scroll_lock ? PSTR(" SCR ") : PSTR(" "), led_state.scroll_lock); | ||
| 84 | } | ||
| 85 | |||
| 86 | /* | ||
| 87 | How to convert your own image: | ||
| 88 | https://docs.splitkb.com/hc/en-us/articles/360013811280 | ||
| 89 | */ | ||
| 90 | static void render_logo(void) { | ||
| 91 | static const char radpad_logo [] PROGMEM = { | ||
| 92 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xe0, 0xe0, 0xf0, 0xf0, 0xf0, 0xf8, 0xf8, | ||
| 93 | 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf8, 0xf0, 0xf0, 0xf0, 0xe0, 0xc0, 0x00, 0x00, 0x00, 0x00, | ||
| 94 | 0x00, 0x00, 0x00, 0xe0, 0xf0, 0xf0, 0xf0, 0xe0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 95 | 0x60, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xe0, 0xe0, 0xe0, 0xe0, 0xc0, | ||
| 96 | 0xc0, 0xc0, 0xe0, 0xe0, 0xe0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf8, 0xf8, 0xf8, 0xf8, | ||
| 97 | 0xf8, 0xf0, 0xf0, 0xe0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xf0, 0xf0, 0xf0, 0xe0, | ||
| 98 | 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0xe0, 0xe0, 0xe0, 0xe0, 0xe0, 0xf0, 0xf0, | ||
| 99 | 0xf0, 0xf0, 0xf0, 0xe0, 0xe0, 0xe0, 0xe0, 0xc0, 0xc0, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 100 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, | ||
| 101 | 0xf1, 0xf8, 0xf8, 0xfc, 0xfc, 0xfe, 0x7f, 0x3f, 0x1f, 0x1f, 0x0f, 0x0f, 0x07, 0x00, 0x80, 0xe0, | ||
| 102 | 0xf8, 0xfc, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xfe, 0xc0, 0xc0, 0xe0, 0xe0, 0xe0, 0xc0, | ||
| 103 | 0xc0, 0xf0, 0xfd, 0xff, 0xff, 0xff, 0x3f, 0x0f, 0x01, 0x00, 0x00, 0x81, 0xc1, 0xff, 0xff, 0xff, | ||
| 104 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xf9, 0xf8, 0xfc, 0x7e, 0x7e, 0x3f, | ||
| 105 | 0x3f, 0x1f, 0x1f, 0x0f, 0x07, 0x03, 0x80, 0xc0, 0xf0, 0xfc, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xff, | ||
| 106 | 0xff, 0xff, 0xe0, 0xc0, 0xc0, 0xe0, 0xe0, 0xc0, 0x80, 0xe0, 0xfd, 0xff, 0xff, 0xff, 0x7f, 0x0f, | ||
| 107 | 0x03, 0x00, 0x00, 0x81, 0xc1, 0xf3, 0xff, 0xff, 0xff, 0x7f, 0x3f, 0x0f, 0x00, 0x00, 0x00, 0x00, | ||
| 108 | 0x00, 0x00, 0x00, 0x00, 0x80, 0xf0, 0xfc, 0xff, 0xff, 0x7f, 0x1f, 0x0f, 0x03, 0x03, 0x03, 0x01, | ||
| 109 | 0x01, 0x01, 0x0f, 0x7f, 0xff, 0xff, 0xfe, 0x80, 0x00, 0xe0, 0xf0, 0xf8, 0xfc, 0xff, 0xff, 0x3f, | ||
| 110 | 0x3f, 0x1f, 0x1f, 0x0f, 0x0f, 0x0f, 0x07, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xe3, 0xf9, 0xff, | ||
| 111 | 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0xfc, 0xfc, 0x7e, 0x3e, 0x3f, 0x1f, 0x1f, 0x8f, 0xe7, 0xff, | ||
| 112 | 0xff, 0xff, 0x7f, 0x3f, 0x1f, 0x0f, 0x07, 0x07, 0x03, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 113 | 0x00, 0xc0, 0xf0, 0xf8, 0xfc, 0xff, 0xff, 0x7f, 0x3f, 0x1f, 0x1f, 0x0f, 0x0f, 0x0f, 0x07, 0x1f, | ||
| 114 | 0xff, 0xff, 0xff, 0xff, 0xc3, 0xe3, 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf9, 0xf8, 0xfc, | ||
| 115 | 0x7e, 0x3e, 0x3f, 0x1f, 0x1f, 0x0f, 0x07, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 116 | 0x00, 0x00, 0x00, 0x00, 0x03, 0x07, 0x07, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 117 | 0x00, 0x00, 0x00, 0x00, 0x03, 0x07, 0x07, 0x07, 0x00, 0x01, 0x01, 0x03, 0x03, 0x01, 0x00, 0x00, | ||
| 118 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x07, 0x03, 0x07, 0x07, 0x07, 0x07, 0x03, | ||
| 119 | 0x07, 0x03, 0x03, 0x01, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x1f, 0x1f, 0x0f, | ||
| 120 | 0x07, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 121 | 0x00, 0x00, 0x01, 0x03, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, | ||
| 122 | 0x01, 0x03, 0x03, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x03, 0x03, 0x03, 0x01, 0x01, 0x00, 0x00, | ||
| 123 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 | ||
| 124 | }; | ||
| 125 | oled_write_raw_P(radpad_logo, sizeof(radpad_logo)); | ||
| 126 | } | ||
| 127 | |||
| 128 | void oled_task_user(void) { | ||
| 129 | if (oled_logo_cleared) { | ||
| 130 | render_status(); | ||
| 131 | } else { | ||
| 132 | if (timer_elapsed32(oled_logo_timer) > OLED_LOGO_TIMEOUT) { | ||
| 133 | oled_clear(); | ||
| 134 | oled_logo_cleared = true; | ||
| 135 | render_status(); | ||
| 136 | } else { | ||
| 137 | render_logo(); | ||
| 138 | } | ||
| 139 | } | ||
| 140 | } | ||
| 141 | #endif | ||
