diff options
author | Less/Rikki <86894501+lesshonor@users.noreply.github.com> | 2022-07-27 20:56:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-28 01:56:37 +0100 |
commit | e7affd05417a48b1e5c0948a24034227384a5d13 (patch) | |
tree | 18dc1710f0e056011970a050a61fd32a92d45c9b /keyboards/mechwild/murphpad/keymaps/jonavin | |
parent | 1e745c48b657c503e248e60f5b68bc517d4bc9e5 (diff) |
feat: encoder map, OLED & encoder kb-level config (#17809)
Diffstat (limited to 'keyboards/mechwild/murphpad/keymaps/jonavin')
-rw-r--r-- | keyboards/mechwild/murphpad/keymaps/jonavin/keymap.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/keyboards/mechwild/murphpad/keymaps/jonavin/keymap.c b/keyboards/mechwild/murphpad/keymaps/jonavin/keymap.c index 043eeb992b..d7c03bd228 100644 --- a/keyboards/mechwild/murphpad/keymaps/jonavin/keymap.c +++ b/keyboards/mechwild/murphpad/keymaps/jonavin/keymap.c @@ -274,7 +274,7 @@ bool process_record_keymap(uint16_t keycode, keyrecord_t *record) { break; } } - return true; + return false; } #endif @@ -296,6 +296,10 @@ bool process_record_keymap(uint16_t keycode, keyrecord_t *record) { } #ifdef LANDSCAPE_MODE + oled_rotation_t oled_init_user(oled_rotation_t rotation) { + return OLED_ROTATION_0; // do not flip the display + } + bool oled_task_user(void) { render_logo(); @@ -365,10 +369,6 @@ bool process_record_keymap(uint16_t keycode, keyrecord_t *record) { // regular mode #ifndef LANDSCAPE_MODE - oled_rotation_t oled_init_user(oled_rotation_t rotation) { - return OLED_ROTATION_270; // flips the display 270 degrees - } - bool oled_task_user(void) { render_logo(); oled_set_cursor(0,5); |