summaryrefslogtreecommitdiffstats
path: root/keyboards/subrezon/la_nc/la_nc.c
diff options
context:
space:
mode:
authorDaniel Osipishin <88534270+subrezon@users.noreply.github.com>2022-05-12 00:39:08 +0200
committerGitHub <noreply@github.com>2022-05-11 15:39:08 -0700
commitba599270189242a728a230e7879b9c189a22053f (patch)
treee5730a9967177922165fb99c020b9228095343ab /keyboards/subrezon/la_nc/la_nc.c
parent8e9a81a86077349b98b6c381d7f75ff10b161295 (diff)
[Keyboard] Add subrezon/la_nc keyboard (#16833)
Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Daniel Osipishin <daniel.osipishin@retarus.de>
Diffstat (limited to 'keyboards/subrezon/la_nc/la_nc.c')
-rw-r--r--keyboards/subrezon/la_nc/la_nc.c45
1 files changed, 45 insertions, 0 deletions
diff --git a/keyboards/subrezon/la_nc/la_nc.c b/keyboards/subrezon/la_nc/la_nc.c
new file mode 100644
index 0000000000..44f1f5afc1
--- /dev/null
+++ b/keyboards/subrezon/la_nc/la_nc.c
@@ -0,0 +1,45 @@
+// Copyright 2022 Daniel Osipishin (@subrezon)
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#include "la_nc.h"
+
+#ifdef OLED_ENABLE
+
+enum layer_id {
+ _QWE = 0,
+ _NUM,
+ _SYM,
+ _OPT
+};
+
+bool oled_task_kb(void) {
+ if (!oled_task_user()) {
+ return false;
+ }
+ oled_write_P(PSTR("Layer:\n"), false);
+
+ switch (get_highest_layer(layer_state)) {
+ case _QWE :
+ oled_write_P(PSTR("QWERTY\n"), false);
+ break;
+
+ case _NUM :
+ oled_write_P(PSTR("Numbers\n"), false);
+ break;
+
+ case _SYM :
+ oled_write_P(PSTR("Symbols\n"), false);
+ break;
+
+ case _OPT :
+ oled_write_P(PSTR("Options\n"), false);
+ break;
+
+ default :
+ oled_write_P(PSTR("Undefined\n"), false);
+ }
+
+ return false;
+};
+
+#endif