summaryrefslogtreecommitdiff
path: root/keyboards/tominabox1/le_chiffre/keymaps
diff options
context:
space:
mode:
authorTJ <tom.campie@gmail.com>2022-07-23 19:03:41 -0500
committerGitHub <noreply@github.com>2022-07-23 17:03:41 -0700
commitc3df1775bc9a14b5a43c03d000f6765c119b44ee (patch)
tree53a8d65cf49d01df5897384fb8fb29a7a636e2ae /keyboards/tominabox1/le_chiffre/keymaps
parentf1ccd60458a83b575ec5f13af8b7e1b07587d9f3 (diff)
[Keyboard] Le Chiffre rev 2 and HE additions (#17377)
* chiffre refactor for new revisions * updated led matrix config * updated per suggestions * add tapdance enable * revert tapdance (none defined in the default keymaps) * clean up rules * add readme for HE * remove notes in readme * fix perm * fix perms * Fix spacing on readme * fix perm * fix perms again?
Diffstat (limited to 'keyboards/tominabox1/le_chiffre/keymaps')
-rw-r--r--keyboards/tominabox1/le_chiffre/keymaps/via/keymap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/tominabox1/le_chiffre/keymaps/via/keymap.c b/keyboards/tominabox1/le_chiffre/keymaps/via/keymap.c
index 10a2fb0d4a..c626cba1cc 100644
--- a/keyboards/tominabox1/le_chiffre/keymaps/via/keymap.c
+++ b/keyboards/tominabox1/le_chiffre/keymaps/via/keymap.c
@@ -144,13 +144,14 @@ void render_mod_status(uint8_t modifiers) {
oled_write_ln_P(PSTR("GUI"), (modifiers & MOD_MASK_GUI));
}
-bool oled_task_user(void) {
+void oled_task_keymap(void) {
render_lechiffre_logo();
oled_set_cursor(0,3);
// render_layer_status(); // Renders the current keyboard state (layer, lock, caps, scroll, etc)
render_mod_status(get_mods()|get_oneshot_mods());
render_keylock_status(host_keyboard_led_state());
render_keylogger_status();
+
return false;
}