diff options
| author | Drashna Jaelre <drashna@live.com> | 2022-01-30 13:20:33 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-30 13:20:33 -0800 |
| commit | 941b1d35b8e40a9c93301a1131ef3f3336fee0b5 (patch) | |
| tree | 54c8d1ec131d5c8a6e0dd89364a9840b3925fcdd /users/drashna | |
| parent | 3555ee0555c8a9ff8aea2a101ae02a72b0e76076 (diff) | |
| download | qmk_firmware-941b1d35b8e40a9c93301a1131ef3f3336fee0b5.tar.gz qmk_firmware-941b1d35b8e40a9c93301a1131ef3f3336fee0b5.zip | |
[Keymap] Add oled improvements and cnano keymap for drashna (#16133)
Diffstat (limited to 'users/drashna')
| -rw-r--r-- | users/drashna/callbacks.c | 7 | ||||
| -rw-r--r-- | users/drashna/config.h | 5 | ||||
| -rw-r--r-- | users/drashna/keyrecords/process_records.c | 5 | ||||
| -rw-r--r-- | users/drashna/keyrecords/unicode.c | 7 | ||||
| -rw-r--r-- | users/drashna/oled/oled_stuff.c | 410 | ||||
| -rw-r--r-- | users/drashna/oled/oled_stuff.h | 24 | ||||
| -rw-r--r-- | users/drashna/pointing/pointing.c | 20 | ||||
| -rw-r--r-- | users/drashna/rgb/rgb_stuff.c | 46 | ||||
| -rw-r--r-- | users/drashna/rules.mk | 1 | ||||
| -rw-r--r-- | users/drashna/split/transport_sync.c | 11 | ||||
| -rw-r--r-- | users/drashna/split/transport_sync.h | 2 |
11 files changed, 360 insertions, 178 deletions
diff --git a/users/drashna/callbacks.c b/users/drashna/callbacks.c index ffc777692..f01aab433 100644 --- a/users/drashna/callbacks.c +++ b/users/drashna/callbacks.c | |||
| @@ -105,16 +105,9 @@ void matrix_scan_user(void) { | |||
| 105 | run_diablo_macro_check(); | 105 | run_diablo_macro_check(); |
| 106 | #endif // TAP_DANCE_ENABLE | 106 | #endif // TAP_DANCE_ENABLE |
| 107 | 107 | ||
| 108 | #if defined(RGBLIGHT_ENABLE) | ||
| 109 | matrix_scan_rgb_light(); | ||
| 110 | #endif // RGBLIGHT_ENABLE | ||
| 111 | #if defined(RGB_MATRIX_ENABLE) | 108 | #if defined(RGB_MATRIX_ENABLE) |
| 112 | matrix_scan_rgb_matrix(); | 109 | matrix_scan_rgb_matrix(); |
| 113 | #endif | 110 | #endif |
| 114 | #if defined(POINTING_DEVICE_ENABLE) | ||
| 115 | matrix_scan_pointing(); | ||
| 116 | #endif | ||
| 117 | |||
| 118 | matrix_scan_secret(); | 111 | matrix_scan_secret(); |
| 119 | 112 | ||
| 120 | matrix_scan_keymap(); | 113 | matrix_scan_keymap(); |
diff --git a/users/drashna/config.h b/users/drashna/config.h index a6b4beb74..f55ed36bc 100644 --- a/users/drashna/config.h +++ b/users/drashna/config.h | |||
| @@ -279,7 +279,7 @@ | |||
| 279 | # define OLED_DISPLAY_WIDTH 128 | 279 | # define OLED_DISPLAY_WIDTH 128 |
| 280 | # define OLED_DISPLAY_HEIGHT 128 | 280 | # define OLED_DISPLAY_HEIGHT 128 |
| 281 | # define OLED_MATRIX_SIZE (OLED_DISPLAY_HEIGHT / 8 * OLED_DISPLAY_WIDTH) | 281 | # define OLED_MATRIX_SIZE (OLED_DISPLAY_HEIGHT / 8 * OLED_DISPLAY_WIDTH) |
| 282 | # define OLED_BLOCK_TYPE uint16_t | 282 | # define OLED_BLOCK_TYPE uint32_t |
| 283 | # define OLED_SOURCE_MAP \ | 283 | # define OLED_SOURCE_MAP \ |
| 284 | { 0, 8, 16, 24, 32, 40, 48, 56 } | 284 | { 0, 8, 16, 24, 32, 40, 48, 56 } |
| 285 | # define OLED_TARGET_MAP \ | 285 | # define OLED_TARGET_MAP \ |
| @@ -288,4 +288,7 @@ | |||
| 288 | # define OLED_BLOCK_SIZE (OLED_MATRIX_SIZE / OLED_BLOCK_COUNT) | 288 | # define OLED_BLOCK_SIZE (OLED_MATRIX_SIZE / OLED_BLOCK_COUNT) |
| 289 | # define OLED_COM_PINS COM_PINS_ALT | 289 | # define OLED_COM_PINS COM_PINS_ALT |
| 290 | # define OLED_IC OLED_IC_SH1107 | 290 | # define OLED_IC OLED_IC_SH1107 |
| 291 | # ifndef OLED_BRIGHTNESS | ||
| 292 | # define OLED_BRIGHTNESS 50 | ||
| 293 | # endif | ||
| 291 | #endif | 294 | #endif |
diff --git a/users/drashna/keyrecords/process_records.c b/users/drashna/keyrecords/process_records.c index 012a57f7e..160a88021 100644 --- a/users/drashna/keyrecords/process_records.c +++ b/users/drashna/keyrecords/process_records.c | |||
| @@ -10,7 +10,7 @@ | |||
| 10 | # include "autocorrection/autocorrection.h" | 10 | # include "autocorrection/autocorrection.h" |
| 11 | #endif | 11 | #endif |
| 12 | #ifdef __AVR__ | 12 | #ifdef __AVR__ |
| 13 | #include <avr/wdt.h> | 13 | # include <avr/wdt.h> |
| 14 | #endif | 14 | #endif |
| 15 | 15 | ||
| 16 | uint16_t copy_paste_timer; | 16 | uint16_t copy_paste_timer; |
| @@ -36,7 +36,7 @@ __attribute__((weak)) bool process_record_secrets(uint16_t keycode, keyrecord_t | |||
| 36 | * @return true Continue processing keycode and send to host | 36 | * @return true Continue processing keycode and send to host |
| 37 | * @return false Stop process keycode and do not send to host | 37 | * @return false Stop process keycode and do not send to host |
| 38 | */ | 38 | */ |
| 39 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | 39 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { |
| 40 | // If console is enabled, it will print the matrix position and status of each key pressed | 40 | // If console is enabled, it will print the matrix position and status of each key pressed |
| 41 | #ifdef KEYLOGGER_ENABLE | 41 | #ifdef KEYLOGGER_ENABLE |
| 42 | uprintf("KL: kc: 0x%04X, col: %2u, row: %2u, pressed: %b, time: %5u, int: %b, count: %u\n", keycode, record->event.key.col, record->event.key.row, record->event.pressed, record->event.time, record->tap.interrupted, record->tap.count); | 42 | uprintf("KL: kc: 0x%04X, col: %2u, row: %2u, pressed: %b, time: %5u, int: %b, count: %u\n", keycode, record->event.key.col, record->event.key.row, record->event.pressed, record->event.time, record->tap.interrupted, record->tap.count); |
| @@ -234,7 +234,6 @@ bool process_record_user(uint16_t keycode, keyrecord_t *re | |||
| 234 | software_reset(); | 234 | software_reset(); |
| 235 | } | 235 | } |
| 236 | return false; | 236 | return false; |
| 237 | |||
| 238 | } | 237 | } |
| 239 | return true; | 238 | return true; |
| 240 | } | 239 | } |
diff --git a/users/drashna/keyrecords/unicode.c b/users/drashna/keyrecords/unicode.c index db2058e5d..5acd51da9 100644 --- a/users/drashna/keyrecords/unicode.c +++ b/users/drashna/keyrecords/unicode.c | |||
| @@ -181,7 +181,6 @@ bool process_record_aussie(uint16_t keycode, keyrecord_t *record) { | |||
| 181 | bool process_record_zalgo(uint16_t keycode, keyrecord_t *record) { | 181 | bool process_record_zalgo(uint16_t keycode, keyrecord_t *record) { |
| 182 | if ((KC_A <= keycode) && (keycode <= KC_0)) { | 182 | if ((KC_A <= keycode) && (keycode <= KC_0)) { |
| 183 | if (record->event.pressed) { | 183 | if (record->event.pressed) { |
| 184 | |||
| 185 | tap_code16_nomods(keycode); | 184 | tap_code16_nomods(keycode); |
| 186 | 185 | ||
| 187 | int number = (rand() % (8 + 1 - 2)) + 2; | 186 | int number = (rand() % (8 + 1 - 2)) + 2; |
| @@ -285,13 +284,11 @@ bool process_record_unicode(uint16_t keycode, keyrecord_t *record) { | |||
| 285 | } else if (typing_mode == KC_ZALGO) { | 284 | } else if (typing_mode == KC_ZALGO) { |
| 286 | return process_record_zalgo(keycode, record); | 285 | return process_record_zalgo(keycode, record); |
| 287 | } | 286 | } |
| 288 | return process_unicode_common(keycode, record); | 287 | return true; |
| 289 | } | 288 | } |
| 290 | 289 | ||
| 291 | /** | 290 | /** |
| 292 | * @brief Initialize the default unicode mode on firmware startu | 291 | * @brief Initialize the default unicode mode on firmware startu |
| 293 | * | 292 | * |
| 294 | */ | 293 | */ |
| 295 | void matrix_init_unicode(void) { | 294 | void matrix_init_unicode(void) { unicode_input_mode_init(); } |
| 296 | unicode_input_mode_init(); | ||
| 297 | } | ||
diff --git a/users/drashna/oled/oled_stuff.c b/users/drashna/oled/oled_stuff.c index eeca010de..c850c5336 100644 --- a/users/drashna/oled/oled_stuff.c +++ b/users/drashna/oled/oled_stuff.c | |||
| @@ -1,4 +1,5 @@ | |||
| 1 | /* Copyright 2020 Christopher Courtney, aka Drashna Jael're (@drashna) <drashna@live.com> | 1 | /* Copyright 2020 Christopher Courtney, aka Drashna Jael're (@drashna) <drashna@live.com> |
| 2 | * Copyright 2021 John Ezra - wpm graph | ||
| 2 | * | 3 | * |
| 3 | * This program is free software: you can redistribute it and/or modify | 4 | * 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 | * it under the terms of the GNU General Public License as published by |
| @@ -15,17 +16,17 @@ | |||
| 15 | */ | 16 | */ |
| 16 | 17 | ||
| 17 | #include "drashna.h" | 18 | #include "drashna.h" |
| 18 | #ifdef CUSTOM_UNICODE_ENABLE | 19 | #ifdef UNICODE_COMMON_ENABLE |
| 19 | # include "process_unicode_common.h" | 20 | # include "process_unicode_common.h" |
| 20 | #endif | 21 | #endif |
| 21 | #include <string.h> | 22 | #include <string.h> |
| 22 | 23 | ||
| 23 | extern bool host_driver_disabled; | 24 | extern bool host_driver_disabled; |
| 24 | 25 | ||
| 25 | uint32_t oled_timer = 0; | 26 | uint32_t oled_timer = 0; |
| 26 | char keylog_str[OLED_KEYLOGGER_LENGTH] = {0}; | 27 | char keylog_str[OLED_KEYLOGGER_LENGTH] = {0}; |
| 27 | static uint16_t log_timer = 0; | 28 | static uint16_t log_timer = 0; |
| 28 | static const char PROGMEM display_border[3] = {0x0, 0xFF, 0x0}; | 29 | static const char PROGMEM display_border[3] = {0x0, 0xFF, 0x0}; |
| 29 | 30 | ||
| 30 | deferred_token kittoken; | 31 | deferred_token kittoken; |
| 31 | 32 | ||
| @@ -112,7 +113,7 @@ void update_log(void) { | |||
| 112 | */ | 113 | */ |
| 113 | void render_keylogger_status(void) { | 114 | void render_keylogger_status(void) { |
| 114 | #ifdef OLED_DISPLAY_VERBOSE | 115 | #ifdef OLED_DISPLAY_VERBOSE |
| 115 | oled_set_cursor(1, 7); | 116 | oled_set_cursor(1, 6); |
| 116 | #endif | 117 | #endif |
| 117 | oled_write_P(PSTR(OLED_RENDER_KEYLOGGER), false); | 118 | oled_write_P(PSTR(OLED_RENDER_KEYLOGGER), false); |
| 118 | oled_write(keylog_str, false); | 119 | oled_write(keylog_str, false); |
| @@ -127,7 +128,7 @@ void render_keylogger_status(void) { | |||
| 127 | */ | 128 | */ |
| 128 | void render_default_layer_state(void) { | 129 | void render_default_layer_state(void) { |
| 129 | #ifdef OLED_DISPLAY_VERBOSE | 130 | #ifdef OLED_DISPLAY_VERBOSE |
| 130 | oled_set_cursor(5, 2); | 131 | oled_set_cursor(1, 1); |
| 131 | #endif | 132 | #endif |
| 132 | oled_write_P(PSTR(OLED_RENDER_LAYOUT_NAME), false); | 133 | oled_write_P(PSTR(OLED_RENDER_LAYOUT_NAME), false); |
| 133 | switch (get_highest_layer(default_layer_state)) { | 134 | switch (get_highest_layer(default_layer_state)) { |
| @@ -155,111 +156,166 @@ void render_default_layer_state(void) { | |||
| 155 | */ | 156 | */ |
| 156 | void render_layer_state(void) { | 157 | void render_layer_state(void) { |
| 157 | #ifdef OLED_DISPLAY_VERBOSE | 158 | #ifdef OLED_DISPLAY_VERBOSE |
| 158 | static const char PROGMEM tri_layer_image[4][3][18] = { | 159 | // clang-format off |
| 160 | static const char PROGMEM tri_layer_image[][3][24] = { | ||
| 161 | // base | ||
| 159 | { | 162 | { |
| 160 | { | 163 | { |
| 161 | 0x80, 0x80, 0x40, 0x40, 0x20, 0x20, | 164 | 0x00, 0x00, 0x00, 0x80, 0x80, 0x40, |
| 162 | 0x10, 0x10, 0x08, 0x08, 0x10, 0x10, | 165 | 0x40, 0x20, 0x20, 0x10, 0x10, 0x08, |
| 163 | 0x20, 0x20, 0x40, 0x40, 0x80, 0x80 | 166 | 0x08, 0x10, 0x10, 0x20, 0x20, 0x40, |
| 167 | 0x40, 0x80, 0x80, 0x00, 0x00, 0x00 | ||
| 164 | }, | 168 | }, |
| 165 | { | 169 | { |
| 166 | 0x88, 0x88, 0x5D, 0x5D, 0x3E, 0x3E, | 170 | 0x00, 0x00, 0x00, 0x88, 0x88, 0x5D, |
| 167 | 0x7C, 0x7C, 0xF8, 0xF8, 0x7C, 0x7C, | 171 | 0x5D, 0x3E, 0x3E, 0x7C, 0x7C, 0xF8, |
| 168 | 0x3E, 0x3E, 0x5D, 0x5D, 0x88, 0x88 | 172 | 0xF8, 0x7C, 0x7C, 0x3E, 0x3E, 0x5D, |
| 173 | 0x5D, 0x88, 0x88, 0x00, 0x00, 0x00 | ||
| 169 | }, | 174 | }, |
| 170 | { | 175 | { |
| 171 | 0x00, 0x00, 0x01, 0x01, 0x02, 0x02, | 176 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, |
| 172 | 0x04, 0x04, 0x08, 0x08, 0x04, 0x04, | 177 | 0x01, 0x02, 0x02, 0x04, 0x04, 0x08, |
| 173 | 0x02, 0x02, 0x01, 0x01, 0x00, 0x00 | 178 | 0x08, 0x04, 0x04, 0x02, 0x02, 0x01, |
| 179 | 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 | ||
| 174 | } | 180 | } |
| 175 | }, | 181 | }, |
| 182 | // raise | ||
| 176 | { | 183 | { |
| 177 | { | 184 | { |
| 178 | 0x80, 0x80, 0xC0, 0xC0, 0xE0, 0xE0, | 185 | 0x00, 0x00, 0x00, 0x80, 0x80, 0xC0, |
| 179 | 0xF0, 0xF0, 0xF8, 0xF8, 0xF0, 0xF0, | 186 | 0xC0, 0xE0, 0xE0, 0xF0, 0xF0, 0xF8, |
| 180 | 0xE0, 0xE0, 0xC0, 0xC0, 0x80, 0x80 | 187 | 0xF8, 0xF0, 0xF0, 0xE0, 0xE0, 0xC0, |
| 188 | 0xC0, 0x80, 0x80, 0x00, 0x00, 0x00 | ||
| 181 | }, | 189 | }, |
| 182 | { | 190 | { |
| 183 | 0x88, 0x88, 0x55, 0x55, 0x23, 0x23, | 191 | 0x00, 0x00, 0x00, 0x88, 0x88, 0x55, |
| 184 | 0x47, 0x47, 0x8F, 0x8F, 0x47, 0x47, | 192 | 0x55, 0x23, 0x23, 0x47, 0x47, 0x8F, |
| 185 | 0x23, 0x23, 0x55, 0x55, 0x88, 0x88 | 193 | 0x8F, 0x47, 0x47, 0x23, 0x23, 0x55, |
| 194 | 0x55, 0x88, 0x88, 0x00, 0x00, 0x00 | ||
| 186 | }, | 195 | }, |
| 187 | { | 196 | { |
| 188 | 0x00, 0x00, 0x01, 0x01, 0x02, 0x02, | 197 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, |
| 189 | 0x04, 0x04, 0x08, 0x08, 0x04, 0x04, | 198 | 0x01, 0x02, 0x02, 0x04, 0x04, 0x08, |
| 190 | 0x02, 0x02, 0x01, 0x01, 0x00, 0x00 | 199 | 0x08, 0x04, 0x04, 0x02, 0x02, 0x01, |
| 200 | 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 | ||
| 191 | } | 201 | } |
| 192 | }, | 202 | }, |
| 203 | // lower | ||
| 193 | { | 204 | { |
| 194 | { | 205 | { |
| 195 | 0x80, 0x80, 0x40, 0x40, 0x20, 0x20, | 206 | 0x00, 0x00, 0x00, 0x80, 0x80, 0x40, |
| 196 | 0x10, 0x10, 0x08, 0x08, 0x10, 0x10, | 207 | 0x40, 0x20, 0x20, 0x10, 0x10, 0x08, |
| 197 | 0x20, 0x20, 0x40, 0x40, 0x80, 0x80 | 208 | 0x08, 0x10, 0x10, 0x20, 0x20, 0x40, |
| 209 | 0x40, 0x80, 0x80, 0x00, 0x00, 0x00 | ||
| 198 | }, | 210 | }, |
| 199 | { | 211 | { |
| 200 | 0x88, 0x88, 0xD5, 0xD5, 0xE2, 0xE2, | 212 | 0x00, 0x00, 0x00, 0x88, 0x88, 0xD5, |
| 201 | 0xC4, 0xC4, 0x88, 0x88, 0xC4, 0xC4, | 213 | 0xD5, 0xE2, 0xE2, 0xC4, 0xC4, 0x88, |
| 202 | 0xE2, 0xE2, 0xD5, 0xD5, 0x88, 0x88 | 214 | 0x88, 0xC4, 0xC4, 0xE2, 0xE2, 0xD5, |
| 215 | 0xD5, 0x88, 0x88, 0x00, 0x00, 0x00 | ||
| 203 | }, | 216 | }, |
| 204 | { | 217 | { |
| 205 | 0x00, 0x00, 0x01, 0x01, 0x03, 0x03, | 218 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, |
| 206 | 0x07, 0x07, 0x0F, 0x0F, 0x07, 0x07, | 219 | 0x01, 0x03, 0x03, 0x07, 0x07, 0x0F, |
| 207 | 0x03, 0x03, 0x01, 0x01, 0x00, 0x00 | 220 | 0x0F, 0x07, 0x07, 0x03, 0x03, 0x01, |
| 221 | 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 | ||
| 208 | } | 222 | } |
| 209 | }, | 223 | }, |
| 224 | // adjust | ||
| 210 | { | 225 | { |
| 211 | { | 226 | { |
| 212 | 0x80, 0x80, 0x40, 0xC0, 0x60, 0xA0, | 227 | 0x00, 0x00, 0x00, 0x80, 0x80, 0x40, |
| 213 | 0x50, 0xB0, 0x58, 0xA8, 0x50, 0xB0, | 228 | 0xC0, 0x60, 0xA0, 0x50, 0xB0, 0x58, |
| 214 | 0x60, 0xA0, 0x40, 0xC0, 0x80, 0x80 | 229 | 0xA8, 0x50, 0xB0, 0x60, 0xA0, 0x40, |
| 230 | 0xC0, 0x80, 0x80, 0x00, 0x00, 0x00 | ||
| 215 | }, | 231 | }, |
| 216 | { | 232 | { |
| 217 | 0x88, 0x88, 0x5D, 0xD5, 0x6B, 0xB6, | 233 | 0x00, 0x00, 0x00, 0x88, 0x88, 0x5D, |
| 218 | 0x6D, 0xD6, 0xAD, 0xDA, 0x6D, 0xD6, | 234 | 0xD5, 0x6B, 0xB6, 0x6D, 0xD6, 0xAD, |
| 219 | 0x6B, 0xB6, 0x5D, 0xD5, 0x88, 0x88 | 235 | 0xDA, 0x6D, 0xD6, 0x6B, 0xB6, 0x5D, |
| 236 | 0xD5, 0x88, 0x88, 0x00, 0x00, 0x00 | ||
| 220 | }, | 237 | }, |
| 221 | { | 238 | { |
| 222 | 0x00, 0x00, 0x01, 0x01, 0x03, 0x02, | 239 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, |
| 223 | 0x05, 0x06, 0x0D, 0x0A, 0x05, 0x06, | 240 | 0x01, 0x03, 0x02, 0x05, 0x06, 0x0D, |
| 224 | 0x03, 0x02, 0x01, 0x01, 0x00, 0x00 | 241 | 0x0A, 0x05, 0x06, 0x03, 0x02, 0x01, |
| 242 | 0x01, 0x00, 0x00, 0x00, 0x00, 0x00 | ||
| 225 | } | 243 | } |
| 244 | }, | ||
| 245 | // blank | ||
| 246 | { | ||
| 247 | { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, | ||
| 248 | { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, | ||
| 249 | { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } | ||
| 250 | }, | ||
| 251 | // better gamepad | ||
| 252 | { | ||
| 253 | { 0, 0, 0,192,224,224,112,240,240,240,240,144,144,240,240,240,240,112,224,224,192, 0, 0, 0 }, | ||
| 254 | { 128,248,255,255,255,254,252,230,195,195,230,255,255,254,247,227,246,253,254,255,255,255,248,128 }, | ||
| 255 | { 7, 15, 15, 15, 7, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 7, 15, 15, 15, 7 } | ||
| 256 | |||
| 257 | }, | ||
| 258 | // mouse | ||
| 259 | { | ||
| 260 | { 0, 0, 0, 0, 0, 0, 0, 0,192, 32, 32, 32,160, 32, 32, 32,192, 0, 0, 0, 0, 0, 0, 0 }, | ||
| 261 | { 0, 0, 0, 0, 0, 0, 0,240, 15, 0, 0, 0, 3, 0, 0, 0, 15,240, 0, 0, 0, 0, 0, 0 }, | ||
| 262 | { 0, 0, 0, 0, 0, 0, 0, 3, 6, 4, 4, 4, 4, 4, 4, 4, 6, 3, 0, 0, 0, 0, 0, 0 } | ||
| 226 | } | 263 | } |
| 227 | }; | 264 | }; |
| 228 | 265 | ||
| 229 | uint8_t layer_is = 0; | 266 | |
| 267 | // clang-format on | ||
| 268 | uint8_t layer_is[4] = { 0, 4, 4, 4}; | ||
| 230 | if (layer_state_is(_ADJUST)) { | 269 | if (layer_state_is(_ADJUST)) { |
| 231 | layer_is = 3; | 270 | layer_is[0] = 3; |
| 232 | } else if (layer_state_is(_RAISE)) { | 271 | } else if (layer_state_is(_RAISE)) { |
| 233 | layer_is = 1; | 272 | layer_is[0] = 1; |
| 234 | } else if (layer_state_is(_LOWER)) { | 273 | } else if (layer_state_is(_LOWER)) { |
| 235 | layer_is = 2; | 274 | layer_is[0] = 2; |
| 275 | } | ||
| 276 | |||
| 277 | if (layer_state_is(_MOUSE)) { | ||
| 278 | layer_is[1] = 6; | ||
| 236 | } | 279 | } |
| 280 | if (layer_state_is(_GAMEPAD)) { | ||
| 281 | layer_is[2] = 5; | ||
| 282 | } | ||
| 283 | |||
| 237 | 284 | ||
| 238 | oled_set_cursor(1, 2); | 285 | oled_set_cursor(1, 2); |
| 239 | oled_write_raw_P(tri_layer_image[layer_is][0], sizeof(tri_layer_image[0][0])); | 286 | oled_write_raw_P(tri_layer_image[layer_is[0]][0], sizeof(tri_layer_image[0][0])); |
| 240 | oled_set_cursor(5, 3); | 287 | oled_set_cursor(5, 2); |
| 288 | oled_write_raw_P(tri_layer_image[layer_is[1]][0], sizeof(tri_layer_image[0][0])); | ||
| 289 | oled_set_cursor(9, 2); | ||
| 290 | oled_write_raw_P(tri_layer_image[layer_is[2]][0], sizeof(tri_layer_image[0][0])); | ||
| 291 | oled_set_cursor(14, 2); | ||
| 241 | oled_write_P(PSTR("Diablo2"), layer_state_is(_DIABLOII)); | 292 | oled_write_P(PSTR("Diablo2"), layer_state_is(_DIABLOII)); |
| 242 | oled_write_P(PSTR(" "), false); | ||
| 243 | oled_write_P(PSTR("Diablo3"), layer_state_is(_DIABLO)); | ||
| 244 | oled_advance_page(true); | 293 | oled_advance_page(true); |
| 245 | 294 | ||
| 246 | oled_set_cursor(1, 3); | 295 | oled_set_cursor(1, 3); |
| 247 | oled_write_raw_P(tri_layer_image[layer_is][1], sizeof(tri_layer_image[0][0])); | 296 | oled_write_raw_P(tri_layer_image[layer_is[0]][1], sizeof(tri_layer_image[0][0])); |
| 248 | oled_set_cursor(5, 4); | 297 | oled_set_cursor(5, 3); |
| 249 | oled_write_P(PSTR("GamePad"), layer_state_is(_GAMEPAD)); | 298 | oled_write_raw_P(tri_layer_image[layer_is[1]][1], sizeof(tri_layer_image[0][0])); |
| 250 | oled_write_P(PSTR(" "), false); | 299 | oled_set_cursor(9, 3); |
| 251 | oled_write_P(PSTR("Mouse"), layer_state_is(_MOUSE)); | 300 | oled_write_raw_P(tri_layer_image[layer_is[2]][1], sizeof(tri_layer_image[0][0])); |
| 301 | oled_set_cursor(14, 3); | ||
| 302 | oled_write_P(PSTR("Diablo3"), layer_state_is(_DIABLO)); | ||
| 252 | oled_advance_page(true); | 303 | oled_advance_page(true); |
| 253 | 304 | ||
| 254 | oled_set_cursor(1, 4); | 305 | oled_set_cursor(1, 4); |
| 255 | oled_write_raw_P(tri_layer_image[layer_is][2], sizeof(tri_layer_image[0][0])); | 306 | oled_write_raw_P(tri_layer_image[layer_is[0]][2], sizeof(tri_layer_image[0][0])); |
| 256 | 307 | oled_set_cursor(5, 4); | |
| 308 | oled_write_raw_P(tri_layer_image[layer_is[1]][2], sizeof(tri_layer_image[0][0])); | ||
| 309 | oled_set_cursor(9, 4); | ||
| 310 | oled_write_raw_P(tri_layer_image[layer_is[2]][2], sizeof(tri_layer_image[0][0])); | ||
| 311 | oled_set_cursor(14, 4); | ||
| 312 | oled_write_P(PSTR("Media"), layer_state_is(_MEDIA)); | ||
| 257 | #else | 313 | #else |
| 258 | oled_write_P(PSTR(OLED_RENDER_LAYER_NAME), false); | 314 | oled_write_P(PSTR(OLED_RENDER_LAYER_NAME), false); |
| 259 | oled_write_P(PSTR(OLED_RENDER_LAYER_LOWER), layer_state_is(_LOWER)); | 315 | oled_write_P(PSTR(OLED_RENDER_LAYER_LOWER), layer_state_is(_LOWER)); |
| 260 | oled_write_P(PSTR(OLED_RENDER_LAYER_RAISE), layer_state_is(_RAISE)); | 316 | oled_write_P(PSTR(OLED_RENDER_LAYER_RAISE), layer_state_is(_RAISE)); |
| 261 | oled_advance_page(true); | ||
| 262 | #endif | 317 | #endif |
| 318 | oled_advance_page(true); | ||
| 263 | } | 319 | } |
| 264 | 320 | ||
| 265 | /** | 321 | /** |
| @@ -288,9 +344,14 @@ void render_keylock_status(uint8_t led_usb_state) { | |||
| 288 | * @brief Renders the matrix scan rate to the host system | 344 | * @brief Renders the matrix scan rate to the host system |
| 289 | * | 345 | * |
| 290 | */ | 346 | */ |
| 291 | void render_matrix_scan_rate(void) { | 347 | void render_matrix_scan_rate(uint8_t padding) { |
| 292 | #ifdef DEBUG_MATRIX_SCAN_RATE | 348 | #ifdef DEBUG_MATRIX_SCAN_RATE |
| 293 | oled_write_P(PSTR("MS:"), false); | 349 | oled_write_P(PSTR("MS:"), false); |
| 350 | if (padding) { | ||
| 351 | for (uint8_t n = padding; n > 0; n--) { | ||
| 352 | oled_write_P(PSTR(" "), false); | ||
| 353 | } | ||
| 354 | } | ||
| 294 | oled_write(get_u16_str(get_matrix_scan_rate(), ' '), false); | 355 | oled_write(get_u16_str(get_matrix_scan_rate(), ' '), false); |
| 295 | #endif | 356 | #endif |
| 296 | } | 357 | } |
| @@ -337,7 +398,7 @@ void render_bootmagic_status(void) { | |||
| 337 | 398 | ||
| 338 | bool is_bootmagic_on; | 399 | bool is_bootmagic_on; |
| 339 | #ifdef OLED_DISPLAY_VERBOSE | 400 | #ifdef OLED_DISPLAY_VERBOSE |
| 340 | oled_set_cursor(7, 4); | 401 | oled_set_cursor(7, 3); |
| 341 | is_bootmagic_on = !keymap_config.swap_lctl_lgui; | 402 | is_bootmagic_on = !keymap_config.swap_lctl_lgui; |
| 342 | #else | 403 | #else |
| 343 | is_bootmagic_on = keymap_config.swap_lctl_lgui; | 404 | is_bootmagic_on = keymap_config.swap_lctl_lgui; |
| @@ -366,11 +427,12 @@ void render_bootmagic_status(void) { | |||
| 366 | oled_write_P(PSTR(" "), false); | 427 | oled_write_P(PSTR(" "), false); |
| 367 | #ifdef AUTOCORRECTION_ENABLE | 428 | #ifdef AUTOCORRECTION_ENABLE |
| 368 | oled_write_P(PSTR("CRCT"), userspace_config.autocorrection); | 429 | oled_write_P(PSTR("CRCT"), userspace_config.autocorrection); |
| 430 | oled_write_P(PSTR(" "), false); | ||
| 369 | #else | 431 | #else |
| 370 | oled_write_P(PSTR(OLED_RENDER_BOOTMAGIC_NOGUI), keymap_config.no_gui); | 432 | oled_write_P(PSTR(OLED_RENDER_BOOTMAGIC_NOGUI), keymap_config.no_gui); |
| 371 | #endif | 433 | #endif |
| 372 | #ifdef OLED_DISPLAY_VERBOSE | 434 | #ifdef OLED_DISPLAY_VERBOSE |
| 373 | oled_set_cursor(7, 5); | 435 | oled_set_cursor(7, 4); |
| 374 | if (keymap_config.swap_lctl_lgui) { | 436 | if (keymap_config.swap_lctl_lgui) { |
| 375 | oled_write_P(logo[1][1], is_bootmagic_on); | 437 | oled_write_P(logo[1][1], is_bootmagic_on); |
| 376 | } else { | 438 | } else { |
| @@ -382,6 +444,7 @@ void render_bootmagic_status(void) { | |||
| 382 | #ifdef SWAP_HANDS_ENABLE | 444 | #ifdef SWAP_HANDS_ENABLE |
| 383 | oled_write_P(PSTR(" "), false); | 445 | oled_write_P(PSTR(" "), false); |
| 384 | oled_write_P(PSTR(OLED_RENDER_BOOTMAGIC_SWAP), swap_hands); | 446 | oled_write_P(PSTR(OLED_RENDER_BOOTMAGIC_SWAP), swap_hands); |
| 447 | oled_write_P(PSTR(" "), false); | ||
| 385 | #endif | 448 | #endif |
| 386 | } | 449 | } |
| 387 | 450 | ||
| @@ -402,7 +465,7 @@ void render_user_status(void) { | |||
| 402 | # endif | 465 | # endif |
| 403 | #endif | 466 | #endif |
| 404 | #if defined(OLED_DISPLAY_VERBOSE) | 467 | #if defined(OLED_DISPLAY_VERBOSE) |
| 405 | oled_set_cursor(1, 6); | 468 | oled_set_cursor(1, 5); |
| 406 | #endif | 469 | #endif |
| 407 | oled_write_P(PSTR(OLED_RENDER_USER_NAME), false); | 470 | oled_write_P(PSTR(OLED_RENDER_USER_NAME), false); |
| 408 | #if !defined(OLED_DISPLAY_VERBOSE) | 471 | #if !defined(OLED_DISPLAY_VERBOSE) |
| @@ -434,9 +497,9 @@ void render_user_status(void) { | |||
| 434 | oled_write_P(rgb_layer_status[userspace_config.rgb_layer_change], false); | 497 | oled_write_P(rgb_layer_status[userspace_config.rgb_layer_change], false); |
| 435 | static const char PROGMEM cat_mode[2][3] = {{0xF8, 0xF9, 0}, {0xF6, 0xF7, 0}}; | 498 | static const char PROGMEM cat_mode[2][3] = {{0xF8, 0xF9, 0}, {0xF6, 0xF7, 0}}; |
| 436 | oled_write_P(cat_mode[0], host_driver_disabled); | 499 | oled_write_P(cat_mode[0], host_driver_disabled); |
| 437 | #if defined(CUSTOM_UNICODE_ENABLE) | 500 | #if defined(UNICODE_COMMON_ENABLE) |
| 438 | static const char PROGMEM uc_mod_status[5][3] = {{0xEA, 0xEB, 0}, {0xEC, 0xED, 0}}; | 501 | static const char PROGMEM uc_mod_status[5][3] = {{0xEC, 0xED, 0}, {0x20, 0x20, 0}, {0x20, 0x20, 0}, {0x20, 0x20, 0}, {0xEA, 0xEB, 0}}; |
| 439 | oled_write_P(uc_mod_status[get_unicode_input_mode() == UC_MAC], false); | 502 | oled_write_P(uc_mod_status[get_unicode_input_mode()], false); |
| 440 | #endif | 503 | #endif |
| 441 | if (userspace_config.nuke_switch) { | 504 | if (userspace_config.nuke_switch) { |
| 442 | #if !defined(OLED_DISPLAY_VERBOSE) | 505 | #if !defined(OLED_DISPLAY_VERBOSE) |
| @@ -466,9 +529,69 @@ void render_wpm(uint8_t padding) { | |||
| 466 | #endif | 529 | #endif |
| 467 | } | 530 | } |
| 468 | 531 | ||
| 469 | #if defined(KEYBOARD_handwired_tractyl_manuform) || defined(KEYBOARD_bastardkb_charybdis) | 532 | //============= USER CONFIG PARAMS =============== |
| 470 | extern kb_config_data_t kb_config; | 533 | // wpm graph originally designed by john-ezra |
| 471 | void render_pointing_dpi_status(uint8_t padding) { | 534 | |
| 535 | // for 128x128: | ||
| 536 | // max_lines_graph = 54; | ||
| 537 | // vertical_offset = 64; | ||
| 538 | // for 128x64: | ||
| 539 | // max_lines_graph = 64; | ||
| 540 | // vertical_offset = 0; | ||
| 541 | |||
| 542 | void render_wpm_graph(uint8_t max_lines_graph, uint8_t vertical_offset) { | ||
| 543 | static uint16_t timer = 0; | ||
| 544 | static uint8_t x = OLED_DISPLAY_HEIGHT - 1; | ||
| 545 | uint8_t currwpm = get_current_wpm(); | ||
| 546 | float max_wpm = OLED_WPM_GRAPH_MAX_WPM; | ||
| 547 | |||
| 548 | if (timer_elapsed(timer) > OLED_WPM_GRAPH_REFRESH_INTERVAL) { // check if it's been long enough before refreshing graph | ||
| 549 | x = (max_lines_graph - 1) - ((currwpm / max_wpm) * (max_lines_graph - 1)); // main calculation to plot graph line | ||
| 550 | for (uint8_t i = 0; i <= OLED_WPM_GRAPH_GRAPH_LINE_THICKNESS - 1; i++) { // first draw actual value line | ||
| 551 | oled_write_pixel(3, x + i + vertical_offset, true); | ||
| 552 | } | ||
| 553 | # ifdef OLED_WPM_GRAPH_VERTICAL_LINE | ||
| 554 | static uint8_t vert_count = 0; | ||
| 555 | if (vert_count == OLED_WPM_GRAPH_VERTCAL_LINE_INTERVAL) { | ||
| 556 | vert_count = 0; | ||
| 557 | while (x <= (max_lines_graph - 1)) { | ||
| 558 | oled_write_pixel(3, x + vertical_offset, true); | ||
| 559 | x++; | ||
| 560 | } | ||
| 561 | } else { | ||
| 562 | for (uint8_t i = (max_lines_graph - 1); i > x; i--) { | ||
| 563 | if (i % OLED_WPM_GRAPH_AREA_FILL_INTERVAL == 0) { | ||
| 564 | oled_write_pixel(3, i + vertical_offset, true); | ||
| 565 | } | ||
| 566 | } | ||
| 567 | vert_count++; | ||
| 568 | } | ||
| 569 | # else | ||
| 570 | for (int i = (max_lines_graph - 1); i > x; i--) { | ||
| 571 | if (i % OLED_WPM_GRAPH_AREA_FILL_INTERVAL == 0) { | ||
| 572 | oled_write_pixel(3, i + vertical_offset, true); | ||
| 573 | } | ||
| 574 | } | ||
| 575 | # endif | ||
| 576 | oled_pan(false); // then move the entire graph one pixel to the right | ||
| 577 | static const char PROGMEM display_border[3] = {0x0, 0xFF, 0x0}; | ||
| 578 | for (uint8_t i = 0; i < 7; i++) { | ||
| 579 | oled_set_cursor(0, i + 8); | ||
| 580 | oled_write_raw_P(display_border, sizeof(display_border)); | ||
| 581 | oled_set_cursor(21, i + 8); | ||
| 582 | oled_write_raw_P(display_border, sizeof(display_border)); | ||
| 583 | } | ||
| 584 | static const char PROGMEM footer_image[] = {0, 3, 4, 8, 16, 32, 64, 128, 128, 128, 128, 128, 128, 128, 192, 224, 240, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 240, 224, 192, 128, 128, 128, 128, 128, 128, 128, 64, 32, 16, 8, 4, 3, 0}; | ||
| 585 | oled_set_cursor(0, 15); | ||
| 586 | |||
| 587 | oled_write_raw_P(footer_image, sizeof(footer_image)); | ||
| 588 | |||
| 589 | timer = timer_read(); // refresh the timer for the next iteration | ||
| 590 | } | ||
| 591 | } | ||
| 592 | |||
| 593 | #if defined(POINTING_DEVICE_ENABLE) | ||
| 594 | void render_pointing_dpi_status(uint16_t cpi, uint8_t padding) { | ||
| 472 | oled_write_P(PSTR("CPI:"), false); | 595 | oled_write_P(PSTR("CPI:"), false); |
| 473 | if (padding) { | 596 | if (padding) { |
| 474 | for (uint8_t n = padding - 1; n > 0; n--) { | 597 | for (uint8_t n = padding - 1; n > 0; n--) { |
| @@ -476,17 +599,15 @@ void render_pointing_dpi_status(uint8_t padding) { | |||
| 476 | } | 599 | } |
| 477 | } | 600 | } |
| 478 | 601 | ||
| 479 | oled_write(get_u16_str(kb_config.device_cpi, ' '), false); | 602 | oled_write(get_u16_str(cpi, ' '), false); |
| 480 | } | 603 | } |
| 481 | #endif | 604 | #endif |
| 482 | 605 | ||
| 483 | __attribute__((weak)) void oled_driver_render_logo_right(void) { | 606 | __attribute__((weak)) void oled_driver_render_logo_right(void) { |
| 484 | #if defined(OLED_DISPLAY_VERBOSE) | 607 | #if defined(OLED_DISPLAY_VERBOSE) |
| 485 | oled_set_cursor(0, 2); | 608 | oled_set_cursor(0, 1); |
| 486 | render_default_layer_state(); | ||
| 487 | #else | ||
| 488 | render_default_layer_state(); | ||
| 489 | #endif | 609 | #endif |
| 610 | render_default_layer_state(); | ||
| 490 | } | 611 | } |
| 491 | 612 | ||
| 492 | // WPM-responsive animation stuff here | 613 | // WPM-responsive animation stuff here |
| @@ -511,8 +632,8 @@ __attribute__((weak)) void oled_driver_render_logo_right(void) { | |||
| 511 | # error frame size too large | 632 | # error frame size too large |
| 512 | #endif | 633 | #endif |
| 513 | 634 | ||
| 514 | static uint8_t animation_frame = 0; | 635 | static uint8_t animation_frame = 0; |
| 515 | static uint8_t animation_type = 0; | 636 | static uint8_t animation_type = 0; |
| 516 | 637 | ||
| 517 | void render_kitty(void) { | 638 | void render_kitty(void) { |
| 518 | // Images credit j-inc(/James Incandenza) and pixelbenny. | 639 | // Images credit j-inc(/James Incandenza) and pixelbenny. |
| @@ -771,28 +892,28 @@ void render_kitty(void) { | |||
| 771 | // clang-format on | 892 | // clang-format on |
| 772 | 893 | ||
| 773 | for (uint8_t i = 0; i < 4; i++) { | 894 | for (uint8_t i = 0; i < 4; i++) { |
| 774 | oled_set_cursor(1, i + 2); | 895 | oled_set_cursor(1, i + 1); |
| 775 | oled_write_raw_P(animation[animation_type][animation_frame][i], OLED_ANIM_SIZE); | 896 | oled_write_raw_P(animation[animation_type][animation_frame][i], OLED_ANIM_SIZE); |
| 776 | } | 897 | } |
| 777 | } | 898 | } |
| 778 | 899 | ||
| 779 | uint32_t kitty_animation_phases(uint32_t triger_time, void *cb_arg) { | 900 | uint32_t kitty_animation_phases(uint32_t triger_time, void *cb_arg) { |
| 780 | uint32_t anim_frame_duration = 500; | 901 | static uint32_t anim_frame_duration = 500; |
| 781 | // can't change animation frame duration here, otherwise, it gets stuck. | ||
| 782 | // weirdly, it seems to work fine if it's in keymap.c but not here. | ||
| 783 | // Should move this block to the deferred execution? | ||
| 784 | #ifdef POINTING_DEVICE_ENABLE | 902 | #ifdef POINTING_DEVICE_ENABLE |
| 785 | if (tap_toggling) { | 903 | if (tap_toggling) { |
| 786 | animation_frame = (animation_frame + 1) % OLED_RTOGI_FRAMES; | 904 | animation_frame = (animation_frame + 1) % OLED_RTOGI_FRAMES; |
| 787 | animation_type = 3; | 905 | animation_type = 3; |
| 788 | anim_frame_duration = 300; | 906 | anim_frame_duration = 300; |
| 789 | } else | 907 | } else |
| 790 | #endif | 908 | #endif |
| 791 | { | 909 | { |
| 910 | #ifdef WPM_ENABLE | ||
| 792 | if (get_current_wpm() <= OLED_SLEEP_SPEED) { | 911 | if (get_current_wpm() <= OLED_SLEEP_SPEED) { |
| 912 | #endif | ||
| 793 | animation_frame = (animation_frame + 1) % OLED_SLEEP_FRAMES; | 913 | animation_frame = (animation_frame + 1) % OLED_SLEEP_FRAMES; |
| 794 | animation_type = 0; | 914 | animation_type = 0; |
| 795 | anim_frame_duration = 500; | 915 | anim_frame_duration = 500; |
| 916 | #ifdef WPM_ENABLE | ||
| 796 | } else if (get_current_wpm() > OLED_WAKE_SPEED) { | 917 | } else if (get_current_wpm() > OLED_WAKE_SPEED) { |
| 797 | animation_frame = (animation_frame + 1) % OLED_WAKE_FRAMES; | 918 | animation_frame = (animation_frame + 1) % OLED_WAKE_FRAMES; |
| 798 | animation_type = 1; | 919 | animation_type = 1; |
| @@ -802,13 +923,14 @@ uint32_t kitty_animation_phases(uint32_t triger_time, void *cb_arg) { | |||
| 802 | animation_type = 2; | 923 | animation_type = 2; |
| 803 | anim_frame_duration = 500; | 924 | anim_frame_duration = 500; |
| 804 | } | 925 | } |
| 926 | #endif | ||
| 805 | } | 927 | } |
| 806 | return anim_frame_duration; | 928 | return anim_frame_duration; |
| 807 | } | 929 | } |
| 808 | 930 | ||
| 809 | void oled_driver_render_logo_left(void) { | 931 | void oled_driver_render_logo_left(void) { |
| 810 | #if defined(OLED_DISPLAY_VERBOSE) | 932 | #if defined(OLED_DISPLAY_VERBOSE) |
| 811 | oled_set_cursor(0, 2); | 933 | oled_set_cursor(0, 1); |
| 812 | render_kitty(); | 934 | render_kitty(); |
| 813 | 935 | ||
| 814 | # if defined(KEYBOARD_handwired_tractyl_manuform) | 936 | # if defined(KEYBOARD_handwired_tractyl_manuform) |
| @@ -817,39 +939,82 @@ void oled_driver_render_logo_left(void) { | |||
| 817 | # elif defined(KEYBOARD_bastardkb_charybdis) | 939 | # elif defined(KEYBOARD_bastardkb_charybdis) |
| 818 | oled_set_cursor(6, 0); | 940 | oled_set_cursor(6, 0); |
| 819 | oled_write_P(PSTR("Charybdis"), true); | 941 | oled_write_P(PSTR("Charybdis"), true); |
| 942 | # elif defined(KEYBOARD_splitkb_kyria) | ||
| 943 | oled_set_cursor(7, 0); | ||
| 944 | oled_write_P(PSTR("SplitKB"), true); | ||
| 820 | # else | 945 | # else |
| 821 | oled_set_cursor(8, 0); | 946 | oled_set_cursor(8, 0); |
| 822 | oled_write_P(PSTR("Left"), true); | 947 | oled_write_P(PSTR("Left"), true); |
| 823 | # endif | 948 | # endif |
| 824 | oled_set_cursor(7, 2); | 949 | oled_set_cursor(7, 1); |
| 825 | # if defined(DEBUG_MATRIX_SCAN_RATE) | 950 | # if defined(WPM_ENABLE) |
| 826 | render_matrix_scan_rate(); | ||
| 827 | # elif defined(WPM_ENABLE) | ||
| 828 | render_wpm(1); | 951 | render_wpm(1); |
| 952 | # elif defined(DEBUG_MATRIX_SCAN_RATE) | ||
| 953 | render_matrix_scan_rate(2); | ||
| 829 | # endif | 954 | # endif |
| 830 | oled_set_cursor(7, 3); | 955 | oled_set_cursor(7, 2); |
| 831 | # if defined(KEYBOARD_handwired_tractyl_manuform) | 956 | # if defined(KEYBOARD_bastardkb_charybdis) |
| 832 | render_pointing_dpi_status(0); | 957 | render_pointing_dpi_status(charybdis_get_pointer_sniping_enabled() ? charybdis_get_pointer_sniping_dpi() : charybdis_get_pointer_default_dpi(), 1); |
| 833 | # elif defined(KEYBOARD_bastardkb_charybdis) | 958 | |
| 834 | render_pointing_dpi_status(1); | 959 | // credit and thanks to jaspertandy on discord for these images |
| 960 | static const char PROGMEM mouse_logo[3][2][16] = { | ||
| 961 | // mouse icon | ||
| 962 | { | ||
| 963 | { 0, 0, 0, 252, 2, 2, 2, 58, 2, 2, 2, 252, 0, 0, 0, 0 }, | ||
| 964 | { 0, 0, 63, 96, 64, 64, 64, 64, 64, 64, 64, 96, 63, 0, 0, 0 } | ||
| 965 | }, | ||
| 966 | // crosshair icon | ||
| 967 | { | ||
| 968 | { 128, 240, 136, 228, 146, 138, 202, 127, 202, 138, 146, 228, 136, 240, 128, 0 }, | ||
| 969 | { 0, 7, 8, 19, 36, 40, 41, 127, 41, 40, 36, 19, 8, 7, 0, 0 } | ||
| 970 | }, | ||
| 971 | // dragscroll icon | ||
| 972 | { | ||
| 973 | { 0, 0, 112, 136, 156, 2, 15, 1, 15, 2, 140, 68, 56, 0, 0, 0 }, | ||
| 974 | { 0, 0, 2, 6, 15, 28, 60, 124, 60, 28, 15, 6, 2, 0, 0, 0 } | ||
| 975 | } | ||
| 976 | }; | ||
| 977 | |||
| 978 | |||
| 979 | uint8_t image_index = 0; | ||
| 980 | # ifdef OLED_DISPLAY_TEST | ||
| 981 | image_index = animation_frame; | ||
| 982 | # else | ||
| 983 | if (charybdis_get_pointer_sniping_enabled()) { | ||
| 984 | image_index = 1; | ||
| 985 | } else if (charybdis_get_pointer_dragscroll_enabled()) { | ||
| 986 | image_index = 2; | ||
| 987 | } | ||
| 988 | # endif | ||
| 989 | |||
| 990 | oled_set_cursor(17, 1); | ||
| 991 | oled_write_raw_P(mouse_logo[image_index][0], 16); | ||
| 992 | oled_set_cursor(17, 2); | ||
| 993 | oled_write_raw_P(mouse_logo[image_index][1], 16); | ||
| 994 | # elif defined(WPM_ENABLE) && defined(DEBUG_MATRIX_SCAN_RATE) | ||
| 995 | render_matrix_scan_rate(2); | ||
| 835 | # endif | 996 | # endif |
| 836 | oled_set_cursor(0, 6); | 997 | |
| 998 | oled_set_cursor(0, 5); | ||
| 837 | #else | 999 | #else |
| 838 | render_default_layer_state(); | 1000 | render_default_layer_state(); |
| 839 | #endif | 1001 | #endif |
| 840 | } | 1002 | } |
| 841 | 1003 | ||
| 842 | void render_status_secondary(void) { | 1004 | void render_status_right(void) { |
| 843 | # if defined(KEYBOARD_handwired_tractyl_manuform) | 1005 | #if defined(KEYBOARD_handwired_tractyl_manuform) |
| 844 | oled_set_cursor(7, 0); | 1006 | oled_set_cursor(7, 0); |
| 845 | oled_write_P(PSTR("Manuform"), true); | 1007 | oled_write_P(PSTR("Manuform"), true); |
| 846 | # elif defined(KEYBOARD_bastardkb_charybdis) | 1008 | #elif defined(KEYBOARD_bastardkb_charybdis) |
| 847 | oled_set_cursor(6, 0); | 1009 | oled_set_cursor(6, 0); |
| 848 | oled_write_P(PSTR("Charybdis"), true); | 1010 | oled_write_P(PSTR("Charybdis"), true); |
| 849 | # else | 1011 | #elif defined(KEYBOARD_splitkb_kyria) |
| 1012 | oled_set_cursor(8, 0); | ||
| 1013 | oled_write_P(PSTR("Kyria"), true); | ||
| 1014 | #else | ||
| 850 | oled_set_cursor(8, 0); | 1015 | oled_set_cursor(8, 0); |
| 851 | oled_write_P(PSTR("Right"), true); | 1016 | oled_write_P(PSTR("Right"), true); |
| 852 | # endif | 1017 | #endif |
| 853 | oled_driver_render_logo_right(); | 1018 | oled_driver_render_logo_right(); |
| 854 | /* Show Keyboard Layout */ | 1019 | /* Show Keyboard Layout */ |
| 855 | render_layer_state(); | 1020 | render_layer_state(); |
| @@ -860,16 +1025,18 @@ void render_status_secondary(void) { | |||
| 860 | render_keylock_status(host_keyboard_leds()); | 1025 | render_keylock_status(host_keyboard_leds()); |
| 861 | } | 1026 | } |
| 862 | 1027 | ||
| 863 | void render_status_main(void) { | 1028 | void render_status_left(void) { |
| 864 | oled_driver_render_logo_left(); | 1029 | oled_driver_render_logo_left(); |
| 865 | 1030 | ||
| 866 | /* Show Keyboard Layout */ | 1031 | /* Show Keyboard Layout */ |
| 867 | render_bootmagic_status(); | 1032 | render_bootmagic_status(); |
| 868 | render_user_status(); | 1033 | render_user_status(); |
| 869 | 1034 | ||
| 870 | // render_keylogger_status(); | 1035 | render_keylogger_status(); |
| 871 | } | 1036 | } |
| 872 | 1037 | ||
| 1038 | __attribute__((weak)) void oled_render_large_display(void) {} | ||
| 1039 | |||
| 873 | __attribute__((weak)) oled_rotation_t oled_init_keymap(oled_rotation_t rotation) { return rotation; } | 1040 | __attribute__((weak)) oled_rotation_t oled_init_keymap(oled_rotation_t rotation) { return rotation; } |
| 874 | 1041 | ||
| 875 | oled_rotation_t oled_init_user(oled_rotation_t rotation) { | 1042 | oled_rotation_t oled_init_user(oled_rotation_t rotation) { |
| @@ -884,12 +1051,14 @@ oled_rotation_t oled_init_user(oled_rotation_t rotation) { | |||
| 884 | return oled_init_keymap(rotation); | 1051 | return oled_init_keymap(rotation); |
| 885 | } | 1052 | } |
| 886 | 1053 | ||
| 1054 | __attribute__((weak)) bool oled_task_keymap(void) { return true; } | ||
| 1055 | |||
| 887 | bool oled_task_user(void) { | 1056 | bool oled_task_user(void) { |
| 888 | update_log(); | 1057 | update_log(); |
| 889 | 1058 | ||
| 890 | if (is_keyboard_master()) { | 1059 | if (is_keyboard_master()) { |
| 891 | #ifndef OLED_DISPLAY_TEST | 1060 | #ifndef OLED_DISPLAY_TEST |
| 892 | if (timer_elapsed32(oled_timer) > 30000) { | 1061 | if (timer_elapsed32(oled_timer) > 60000) { |
| 893 | oled_off(); | 1062 | oled_off(); |
| 894 | return false; | 1063 | return false; |
| 895 | } else | 1064 | } else |
| @@ -898,14 +1067,23 @@ bool oled_task_user(void) { | |||
| 898 | oled_on(); | 1067 | oled_on(); |
| 899 | } | 1068 | } |
| 900 | } | 1069 | } |
| 1070 | |||
| 1071 | if (!oled_task_keymap()) { | ||
| 1072 | return false; | ||
| 1073 | } | ||
| 1074 | |||
| 1075 | #if defined(OLED_DISPLAY_128X128) | ||
| 1076 | oled_set_cursor(0, 7); | ||
| 1077 | oled_render_large_display(); | ||
| 1078 | #endif | ||
| 1079 | |||
| 901 | #if defined(OLED_DISPLAY_VERBOSE) | 1080 | #if defined(OLED_DISPLAY_VERBOSE) |
| 902 | static const char PROGMEM header_image[] = { | 1081 | static const char PROGMEM header_image[] = { |
| 903 | 0,192, 32, 16, 8, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 3, 7, 15, 31, 63,127,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,127, 63, 31, 15, 7, 3, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 8, 16, 32,192, 0, | 1082 | 0, 192, 32, 16, 8, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 3, 7, 15, 31, 63, 127, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 127, 63, 31, 15, 7, 3, 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, 8, 16, 32, 192, 0, |
| 904 | 0,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 7, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 7, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 0 | 1083 | // 0,255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 7, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 7, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,255, 0 |
| 905 | }; | 1084 | }; |
| 906 | static const char PROGMEM footer_image[] = { | 1085 | static const char PROGMEM footer_image[] = {0, 3, 4, 8, 16, 32, 64, 128, 128, 128, 128, 128, 128, 128, 192, 224, 240, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 248, 240, 224, 192, 128, 128, 128, 128, 128, 128, 128, 64, 32, 16, 8, 4, 3, 0}; |
| 907 | 0, 3, 4, 8, 16, 32, 64,128,128,128,128,128,128,128,192,224,240,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,248,240,224,192,128,128,128,128,128,128,128, 64, 32, 16, 8, 4, 3, 0 | 1086 | oled_set_cursor(0, 0); |
| 908 | }; | ||
| 909 | oled_write_raw_P(header_image, sizeof(header_image)); | 1087 | oled_write_raw_P(header_image, sizeof(header_image)); |
| 910 | oled_set_cursor(0, 1); | 1088 | oled_set_cursor(0, 1); |
| 911 | #endif | 1089 | #endif |
| @@ -913,16 +1091,10 @@ bool oled_task_user(void) { | |||
| 913 | #ifndef OLED_DISPLAY_TEST | 1091 | #ifndef OLED_DISPLAY_TEST |
| 914 | if (is_keyboard_left()) { | 1092 | if (is_keyboard_left()) { |
| 915 | #endif | 1093 | #endif |
| 916 | render_status_main(); // Renders the current keyboard state (layer, lock, caps, scroll, etc) | 1094 | render_status_left(); |
| 917 | #ifndef OLED_DISPLAY_TEST | 1095 | #ifndef OLED_DISPLAY_TEST |
| 918 | } else { | 1096 | } else { |
| 919 | render_status_secondary(); | 1097 | render_status_right(); |
| 920 | } | ||
| 921 | #endif | ||
| 922 | |||
| 923 | #if defined(OLED_DISPLAY_128X128) | ||
| 924 | if (is_keyboard_left()) { | ||
| 925 | render_keylogger_status(); | ||
| 926 | } | 1098 | } |
| 927 | #endif | 1099 | #endif |
| 928 | 1100 | ||
| @@ -933,7 +1105,7 @@ bool oled_task_user(void) { | |||
| 933 | # else | 1105 | # else |
| 934 | num_of_rows = 7; | 1106 | num_of_rows = 7; |
| 935 | # endif | 1107 | # endif |
| 936 | for (uint8_t i= 1; i < num_of_rows; i++) { | 1108 | for (uint8_t i = 1; i < num_of_rows; i++) { |
| 937 | oled_set_cursor(0, i); | 1109 | oled_set_cursor(0, i); |
| 938 | oled_write_raw_P(display_border, sizeof(display_border)); | 1110 | oled_write_raw_P(display_border, sizeof(display_border)); |
| 939 | oled_set_cursor(21, i); | 1111 | oled_set_cursor(21, i); |
diff --git a/users/drashna/oled/oled_stuff.h b/users/drashna/oled/oled_stuff.h index 985153c2f..7245f6131 100644 --- a/users/drashna/oled/oled_stuff.h +++ b/users/drashna/oled/oled_stuff.h | |||
| @@ -28,15 +28,17 @@ void render_keylogger_status(void); | |||
| 28 | void render_default_layer_state(void); | 28 | void render_default_layer_state(void); |
| 29 | void render_layer_state(void); | 29 | void render_layer_state(void); |
| 30 | void render_keylock_status(uint8_t led_usb_state); | 30 | void render_keylock_status(uint8_t led_usb_state); |
| 31 | void render_matrix_scan_rate(void); | 31 | void render_matrix_scan_rate(uint8_t padding); |
| 32 | void render_mod_status(uint8_t modifiers); | 32 | void render_mod_status(uint8_t modifiers); |
| 33 | void render_bootmagic_status(void); | 33 | void render_bootmagic_status(void); |
| 34 | void render_user_status(void); | 34 | void render_user_status(void); |
| 35 | void oled_driver_render_logo(void); | 35 | void oled_driver_render_logo(void); |
| 36 | void render_wpm(uint8_t padding); | 36 | void render_wpm(uint8_t padding); |
| 37 | void render_pointing_dpi_status(uint8_t padding); | 37 | void render_pointing_dpi_status(uint16_t cpi, uint8_t padding); |
| 38 | void oled_driver_render_logo_left(void); | 38 | void oled_driver_render_logo_left(void); |
| 39 | void oled_driver_render_logo_right(void); | 39 | void oled_driver_render_logo_right(void); |
| 40 | void oled_render_large_display(void); | ||
| 41 | void render_wpm_graph(uint8_t max_lines_graph, uint8_t vertical_offset); | ||
| 40 | 42 | ||
| 41 | #if defined(OLED_DISPLAY_128X128) || defined(OLED_DISPLAY_128X64) | 43 | #if defined(OLED_DISPLAY_128X128) || defined(OLED_DISPLAY_128X64) |
| 42 | # define OLED_DISPLAY_VERBOSE | 44 | # define OLED_DISPLAY_VERBOSE |
| @@ -47,7 +49,7 @@ void oled_driver_render_logo_right(void); | |||
| 47 | # endif | 49 | # endif |
| 48 | # define OLED_RENDER_LAYOUT_NAME "Layout: " | 50 | # define OLED_RENDER_LAYOUT_NAME "Layout: " |
| 49 | # define OLED_RENDER_LAYOUT_QWERTY "Qwerty" | 51 | # define OLED_RENDER_LAYOUT_QWERTY "Qwerty" |
| 50 | # define OLED_RENDER_LAYOUT_COLEMAK_DH "ColemkDH" | 52 | # define OLED_RENDER_LAYOUT_COLEMAK_DH "Colemak DH" |
| 51 | # define OLED_RENDER_LAYOUT_COLEMAK "Colemak" | 53 | # define OLED_RENDER_LAYOUT_COLEMAK "Colemak" |
| 52 | # define OLED_RENDER_LAYOUT_DVORAK "Dvorak" | 54 | # define OLED_RENDER_LAYOUT_DVORAK "Dvorak" |
| 53 | # define OLED_RENDER_LAYOUT_WORKMAN "Workman" | 55 | # define OLED_RENDER_LAYOUT_WORKMAN "Workman" |
| @@ -139,3 +141,19 @@ void oled_driver_render_logo_right(void); | |||
| 139 | 141 | ||
| 140 | 142 | ||
| 141 | extern char keylog_str[OLED_KEYLOGGER_LENGTH]; | 143 | extern char keylog_str[OLED_KEYLOGGER_LENGTH]; |
| 144 | |||
| 145 | #ifndef OLED_WPM_GRAPH_MAX_WPM | ||
| 146 | # define OLED_WPM_GRAPH_MAX_WPM 120 | ||
| 147 | #endif | ||
| 148 | #ifndef OLED_WPM_GRAPH_REFRESH_INTERVAL | ||
| 149 | # define OLED_WPM_GRAPH_REFRESH_INTERVAL 300 | ||
| 150 | #endif | ||
| 151 | #ifndef OLED_WPM_GRAPH_AREA_FILL_INTERVAL | ||
| 152 | # define OLED_WPM_GRAPH_AREA_FILL_INTERVAL 3 | ||
| 153 | #endif | ||
| 154 | #ifndef OLED_WPM_GRAPH_VERTCAL_LINE_INTERVAL | ||
| 155 | # define OLED_WPM_GRAPH_VERTCAL_LINE_INTERVAL 3 | ||
| 156 | #endif | ||
| 157 | #ifndef OLED_WPM_GRAPH_GRAPH_LINE_THICKNESS | ||
| 158 | # define OLED_WPM_GRAPH_GRAPH_LINE_THICKNESS 2 | ||
| 159 | #endif | ||
diff --git a/users/drashna/pointing/pointing.c b/users/drashna/pointing/pointing.c index 0116ce090..0dcfe73f3 100644 --- a/users/drashna/pointing/pointing.c +++ b/users/drashna/pointing/pointing.c | |||
| @@ -42,19 +42,15 @@ report_mouse_t pointing_device_task_user(report_mouse_t mouse_report) { | |||
| 42 | layer_on(_MOUSE); | 42 | layer_on(_MOUSE); |
| 43 | } | 43 | } |
| 44 | } | 44 | } |
| 45 | } | 45 | } else if (timer_elapsed(mouse_timer) > 650 && layer_state_is(_MOUSE) && !mouse_keycode_tracker && !tap_toggling) { |
| 46 | return pointing_device_task_keymap(mouse_report); | ||
| 47 | } | ||
| 48 | |||
| 49 | void matrix_scan_pointing(void) { | ||
| 50 | if (timer_elapsed(mouse_timer) > 650 && layer_state_is(_MOUSE) && !mouse_keycode_tracker && !tap_toggling) { | ||
| 51 | layer_off(_MOUSE); | 46 | layer_off(_MOUSE); |
| 52 | } | 47 | } else if (tap_toggling) { |
| 53 | if (tap_toggling) { | ||
| 54 | if (!layer_state_is(_MOUSE)) { | 48 | if (!layer_state_is(_MOUSE)) { |
| 55 | layer_on(_MOUSE); | 49 | layer_on(_MOUSE); |
| 56 | } | 50 | } |
| 57 | } | 51 | } |
| 52 | |||
| 53 | return pointing_device_task_keymap(mouse_report); | ||
| 58 | } | 54 | } |
| 59 | 55 | ||
| 60 | bool process_record_pointing(uint16_t keycode, keyrecord_t* record) { | 56 | bool process_record_pointing(uint16_t keycode, keyrecord_t* record) { |
| @@ -86,7 +82,7 @@ bool process_record_pointing(uint16_t keycode, keyrecord_t* record) { | |||
| 86 | case MO(_MOUSE): | 82 | case MO(_MOUSE): |
| 87 | #if defined(KEYBOARD_ploopy) || defined(KEYBOARD_handwired_tractyl_manuform) | 83 | #if defined(KEYBOARD_ploopy) || defined(KEYBOARD_handwired_tractyl_manuform) |
| 88 | case DPI_CONFIG: | 84 | case DPI_CONFIG: |
| 89 | #elif defined(KEYBOARD_bastardkb_charybdis) | 85 | #elif defined(KEYBOARD_bastardkb_charybdis) && !defined(NO_CHARYBDIS_KEYCODES) |
| 90 | case SAFE_RANGE ... (CHARYBDIS_SAFE_RANGE-1): | 86 | case SAFE_RANGE ... (CHARYBDIS_SAFE_RANGE-1): |
| 91 | #endif | 87 | #endif |
| 92 | case KC_MS_UP ... KC_MS_WH_RIGHT: | 88 | case KC_MS_UP ... KC_MS_WH_RIGHT: |
| @@ -98,6 +94,12 @@ bool process_record_pointing(uint16_t keycode, keyrecord_t* record) { | |||
| 98 | record->event.pressed ? mouse_keycode_tracker++ : mouse_keycode_tracker--; | 94 | record->event.pressed ? mouse_keycode_tracker++ : mouse_keycode_tracker--; |
| 99 | mouse_timer = timer_read(); | 95 | mouse_timer = timer_read(); |
| 100 | break; | 96 | break; |
| 97 | case QK_ONE_SHOT_MOD ... QK_ONE_SHOT_MOD_MAX: | ||
| 98 | break; | ||
| 99 | case QK_MOD_TAP ... QK_MOD_TAP_MAX: | ||
| 100 | if (record->event.pressed || !record->tap.count) { | ||
| 101 | break; | ||
| 102 | } | ||
| 101 | default: | 103 | default: |
| 102 | if (IS_NOEVENT(record->event)) break; | 104 | if (IS_NOEVENT(record->event)) break; |
| 103 | if ((keycode >= QK_LAYER_TAP && keycode <= QK_LAYER_TAP_MAX) && (((keycode >> 0x8) & 0xF) == _MOUSE)) { | 105 | if ((keycode >= QK_LAYER_TAP && keycode <= QK_LAYER_TAP_MAX) && (((keycode >> 0x8) & 0xF) == _MOUSE)) { |
diff --git a/users/drashna/rgb/rgb_stuff.c b/users/drashna/rgb/rgb_stuff.c index e0422334a..09071f715 100644 --- a/users/drashna/rgb/rgb_stuff.c +++ b/users/drashna/rgb/rgb_stuff.c | |||
| @@ -23,9 +23,29 @@ static bool is_enabled; | |||
| 23 | static bool is_rgblight_startup; | 23 | static bool is_rgblight_startup; |
| 24 | static HSV old_hsv; | 24 | static HSV old_hsv; |
| 25 | static uint8_t old_mode; | 25 | static uint8_t old_mode; |
| 26 | static uint16_t rgblight_startup_loop_timer; | 26 | deferred_token rgb_startup_token; |
| 27 | # endif | 27 | # endif |
| 28 | 28 | ||
| 29 | uint32_t rgb_startup_animation(uint32_t triger_time, void *cb_arg) { | ||
| 30 | if (is_rgblight_startup && is_keyboard_master()) { | ||
| 31 | static uint8_t counter = 0; | ||
| 32 | counter++; | ||
| 33 | rgblight_sethsv_noeeprom((counter + old_hsv.h) % 255, 255, 255); | ||
| 34 | if (counter >= 255) { | ||
| 35 | is_rgblight_startup = false; | ||
| 36 | if (userspace_config.rgb_layer_change) { | ||
| 37 | layer_state_set_rgb_light(layer_state); | ||
| 38 | } else { | ||
| 39 | rgblight_set_hsv_and_mode(old_hsv.h, old_hsv.s, old_hsv.v, old_mode); | ||
| 40 | } | ||
| 41 | if (!is_enabled) { | ||
| 42 | rgblight_disable_noeeprom(); | ||
| 43 | } | ||
| 44 | } | ||
| 45 | } | ||
| 46 | return is_rgblight_startup ? 10 : 0; | ||
| 47 | } | ||
| 48 | |||
| 29 | void keyboard_post_init_rgb_light(void) { | 49 | void keyboard_post_init_rgb_light(void) { |
| 30 | # if defined(RGBLIGHT_STARTUP_ANIMATION) | 50 | # if defined(RGBLIGHT_STARTUP_ANIMATION) |
| 31 | is_enabled = rgblight_is_enabled(); | 51 | is_enabled = rgblight_is_enabled(); |
| @@ -40,30 +60,8 @@ void keyboard_post_init_rgb_light(void) { | |||
| 40 | if (userspace_config.rgb_layer_change) { | 60 | if (userspace_config.rgb_layer_change) { |
| 41 | layer_state_set_rgb_light(layer_state); | 61 | layer_state_set_rgb_light(layer_state); |
| 42 | } | 62 | } |
| 43 | } | 63 | rgb_startup_token = defer_exec(300, rgb_startup_animation, NULL); |
| 44 | 64 | ||
| 45 | void matrix_scan_rgb_light(void) { | ||
| 46 | # if defined(RGBLIGHT_STARTUP_ANIMATION) | ||
| 47 | if (is_rgblight_startup && is_keyboard_master()) { | ||
| 48 | if (sync_timer_elapsed(rgblight_startup_loop_timer) > 10) { | ||
| 49 | static uint8_t counter; | ||
| 50 | counter++; | ||
| 51 | rgblight_sethsv_noeeprom((counter + old_hsv.h) % 255, 255, 255); | ||
| 52 | rgblight_startup_loop_timer = sync_timer_read(); | ||
| 53 | if (counter == 255) { | ||
| 54 | is_rgblight_startup = false; | ||
| 55 | if (userspace_config.rgb_layer_change) { | ||
| 56 | layer_state_set_rgb_light(layer_state); | ||
| 57 | } else { | ||
| 58 | rgblight_set_hsv_and_mode(old_hsv.h, old_hsv.s, old_hsv.v, old_mode); | ||
| 59 | } | ||
| 60 | if (!is_enabled) { | ||
| 61 | rgblight_disable_noeeprom(); | ||
| 62 | } | ||
| 63 | } | ||
| 64 | } | ||
| 65 | } | ||
| 66 | # endif | ||
| 67 | } | 65 | } |
| 68 | 66 | ||
| 69 | layer_state_t layer_state_set_rgb_light(layer_state_t state) { | 67 | layer_state_t layer_state_set_rgb_light(layer_state_t state) { |
diff --git a/users/drashna/rules.mk b/users/drashna/rules.mk index 553cc2cbc..4bc71b693 100644 --- a/users/drashna/rules.mk +++ b/users/drashna/rules.mk | |||
| @@ -58,6 +58,7 @@ ifeq ($(strip $(RGBLIGHT_ENABLE)), yes) | |||
| 58 | endif | 58 | endif |
| 59 | ifeq ($(strip $(RGBLIGHT_STARTUP_ANIMATION)), yes) | 59 | ifeq ($(strip $(RGBLIGHT_STARTUP_ANIMATION)), yes) |
| 60 | OPT_DEFS += -DRGBLIGHT_STARTUP_ANIMATION | 60 | OPT_DEFS += -DRGBLIGHT_STARTUP_ANIMATION |
| 61 | DEFERRED_EXEC_ENABLE = yes | ||
| 61 | endif | 62 | endif |
| 62 | endif | 63 | endif |
| 63 | endif | 64 | endif |
diff --git a/users/drashna/split/transport_sync.c b/users/drashna/split/transport_sync.c index 2509e448c..4c113ec25 100644 --- a/users/drashna/split/transport_sync.c +++ b/users/drashna/split/transport_sync.c | |||
| @@ -8,7 +8,7 @@ | |||
| 8 | # include <avr/wdt.h> | 8 | # include <avr/wdt.h> |
| 9 | #endif | 9 | #endif |
| 10 | 10 | ||
| 11 | #ifdef CUSTOM_UNICODE_ENABLE | 11 | #ifdef UNICODE_COMMON_ENABLE |
| 12 | # include "process_unicode_common.h" | 12 | # include "process_unicode_common.h" |
| 13 | extern unicode_config_t unicode_config; | 13 | extern unicode_config_t unicode_config; |
| 14 | #endif | 14 | #endif |
| @@ -58,7 +58,7 @@ void watchdog_handler(uint8_t in_buflen, const void* in_data, uint8_t out_buflen | |||
| 58 | #endif | 58 | #endif |
| 59 | 59 | ||
| 60 | #ifdef OLED_ENABLE | 60 | #ifdef OLED_ENABLE |
| 61 | #include "oled/oled_stuff.h" | 61 | # include "oled/oled_stuff.h" |
| 62 | void keylogger_string_sync(uint8_t initiator2target_buffer_size, const void* initiator2target_buffer, uint8_t target2initiator_buffer_size, void* target2initiator_buffer) { | 62 | void keylogger_string_sync(uint8_t initiator2target_buffer_size, const void* initiator2target_buffer, uint8_t target2initiator_buffer_size, void* target2initiator_buffer) { |
| 63 | if (initiator2target_buffer_size == OLED_KEYLOGGER_LENGTH) { | 63 | if (initiator2target_buffer_size == OLED_KEYLOGGER_LENGTH) { |
| 64 | memcpy(&keylog_str, initiator2target_buffer, initiator2target_buffer_size); | 64 | memcpy(&keylog_str, initiator2target_buffer, initiator2target_buffer_size); |
| @@ -95,7 +95,7 @@ void user_transport_update(void) { | |||
| 95 | #if defined(POINTING_DEVICE_ENABLE) && defined(KEYBOARD_handwired_tractyl_manuform) | 95 | #if defined(POINTING_DEVICE_ENABLE) && defined(KEYBOARD_handwired_tractyl_manuform) |
| 96 | user_state.tap_toggling = tap_toggling; | 96 | user_state.tap_toggling = tap_toggling; |
| 97 | #endif | 97 | #endif |
| 98 | #ifdef UNICODE_ENABLE | 98 | #ifdef UNICODE_COMMON_ENABLE |
| 99 | user_state.unicode_mode = unicode_config.input_mode; | 99 | user_state.unicode_mode = unicode_config.input_mode; |
| 100 | #endif | 100 | #endif |
| 101 | #ifdef SWAP_HANDS_ENABLE | 101 | #ifdef SWAP_HANDS_ENABLE |
| @@ -108,7 +108,7 @@ void user_transport_update(void) { | |||
| 108 | keymap_config.raw = transport_keymap_config; | 108 | keymap_config.raw = transport_keymap_config; |
| 109 | userspace_config.raw = transport_userspace_config; | 109 | userspace_config.raw = transport_userspace_config; |
| 110 | user_state.raw = transport_user_state; | 110 | user_state.raw = transport_user_state; |
| 111 | #ifdef UNICODE_ENABLE | 111 | #ifdef UNICODE_COMMON_ENABLE |
| 112 | unicode_config.input_mode = user_state.unicode_mode; | 112 | unicode_config.input_mode = user_state.unicode_mode; |
| 113 | #endif | 113 | #endif |
| 114 | #if defined(POINTING_DEVICE_ENABLE) && defined(KEYBOARD_handwired_tractyl_manuform) | 114 | #if defined(POINTING_DEVICE_ENABLE) && defined(KEYBOARD_handwired_tractyl_manuform) |
| @@ -128,7 +128,7 @@ void user_transport_sync(void) { | |||
| 128 | static uint32_t last_config = 0, last_sync[4], last_user_state = 0; | 128 | static uint32_t last_config = 0, last_sync[4], last_user_state = 0; |
| 129 | bool needs_sync = false; | 129 | bool needs_sync = false; |
| 130 | #ifdef OLED_ENABLE | 130 | #ifdef OLED_ENABLE |
| 131 | static char keylog_temp[OLED_KEYLOGGER_LENGTH] = { 0 }; | 131 | static char keylog_temp[OLED_KEYLOGGER_LENGTH] = {0}; |
| 132 | #endif | 132 | #endif |
| 133 | 133 | ||
| 134 | // Check if the state values are different | 134 | // Check if the state values are different |
| @@ -228,7 +228,6 @@ void user_transport_sync(void) { | |||
| 228 | } | 228 | } |
| 229 | } | 229 | } |
| 230 | #endif | 230 | #endif |
| 231 | |||
| 232 | } | 231 | } |
| 233 | 232 | ||
| 234 | void housekeeping_task_user(void) { | 233 | void housekeeping_task_user(void) { |
diff --git a/users/drashna/split/transport_sync.h b/users/drashna/split/transport_sync.h index 884586dfd..f38fdcf1e 100644 --- a/users/drashna/split/transport_sync.h +++ b/users/drashna/split/transport_sync.h | |||
| @@ -15,7 +15,7 @@ typedef union { | |||
| 15 | bool audio_enable :1; | 15 | bool audio_enable :1; |
| 16 | bool audio_clicky_enable :1; | 16 | bool audio_clicky_enable :1; |
| 17 | bool tap_toggling :1; | 17 | bool tap_toggling :1; |
| 18 | bool unicode_mode :1; | 18 | uint8_t unicode_mode :3; |
| 19 | bool swap_hands :1; | 19 | bool swap_hands :1; |
| 20 | bool host_driver_disabled :1; | 20 | bool host_driver_disabled :1; |
| 21 | }; | 21 | }; |
