summaryrefslogtreecommitdiff
path: root/keyboards/kumaokobo/kudox_full/kudox_full.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/kumaokobo/kudox_full/kudox_full.c')
-rw-r--r--keyboards/kumaokobo/kudox_full/kudox_full.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/keyboards/kumaokobo/kudox_full/kudox_full.c b/keyboards/kumaokobo/kudox_full/kudox_full.c
new file mode 100644
index 0000000000..d69f679822
--- /dev/null
+++ b/keyboards/kumaokobo/kudox_full/kudox_full.c
@@ -0,0 +1,41 @@
+// Copyright 2021 Kumao Kobo (@kumaokobo)
+// SPDX-License-Identifier: GPL-2.0+
+
+#include "quantum.h"
+
+#ifdef RGBLIGHT_ENABLE
+void eeconfig_init_kb(void) {
+ rgblight_mode(RGBLIGHT_MODE_RAINBOW_SWIRL);
+};
+#endif
+
+#ifdef OLED_ENABLE
+bool oled_task_kb(void) {
+ if (!oled_task_user()) { return false; }
+ // Host Keyboard Layer Status
+ oled_write_ln_P(PSTR("Kudox Keyboard"), false);
+ switch (get_highest_layer(layer_state)) {
+ case 0:
+ oled_write_ln_P(PSTR("\n"), false);
+ break;
+ case 1:
+ oled_write_ln_P(PSTR("\nLayer: Symbol"), false);
+ break;
+ case 2:
+ oled_write_ln_P(PSTR("\nLayer: Function"), false);
+ break;
+ case 3:
+ oled_write_ln_P(PSTR("\nLayer: Light"), false);
+ break;
+ default:
+ // Or use the write_ln shortcut over adding '\n' to the end of your string
+ oled_write_ln_P(PSTR("\nLayer: Undefined"), false);
+ }
+ // Host Keyboard LED Status
+ led_t led_state = host_keyboard_led_state();
+ oled_write_P(led_state.num_lock ? PSTR("NUM ") : PSTR(" "), false);
+ oled_write_P(led_state.caps_lock ? PSTR("CAP ") : PSTR(" "), false);
+ oled_write_P(led_state.scroll_lock ? PSTR("SCR ") : PSTR(" "), false);
+ return true;
+}
+#endif