summaryrefslogtreecommitdiffstats
path: root/keyboards/lily58/lib/host_led_state_reader.c
diff options
context:
space:
mode:
authorNaoki Katahira <kata0510.com@gmail.com>2019-01-05 18:30:48 +0100
committerDrashna Jaelre <drashna@live.com>2019-01-05 18:30:48 +0100
commitea47be936b41a31e2644ad3403d91010916683ce (patch)
treec8db4d32373542cd1236a4d537fa45a00ed7b6fb /keyboards/lily58/lib/host_led_state_reader.c
parent5b5f452bf9feae121ec5c2f3e9d5d993fcb73f92 (diff)
downloadqmk_firmware-ea47be936b41a31e2644ad3403d91010916683ce.tar.gz
qmk_firmware-ea47be936b41a31e2644ad3403d91010916683ce.tar.xz
Keyboard: Lily58 update serial.c and add OLED (#4715)
* update serial.c and add OLED * update readme * keymap fix * keymap fix2
Diffstat (limited to 'keyboards/lily58/lib/host_led_state_reader.c')
-rw-r--r--keyboards/lily58/lib/host_led_state_reader.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/keyboards/lily58/lib/host_led_state_reader.c b/keyboards/lily58/lib/host_led_state_reader.c
new file mode 100644
index 000000000..0e22173b1
--- /dev/null
+++ b/keyboards/lily58/lib/host_led_state_reader.c
@@ -0,0 +1,15 @@
+#include <stdio.h>
+#include "lily58.h"
+
+char host_led_state_str[24];
+
+const char *read_host_led_state(void)
+{
+ uint8_t leds = host_keyboard_leds();
+ snprintf(host_led_state_str, sizeof(host_led_state_str), "NL:%s CL:%s SL:%s",
+ (leds & (1 << USB_LED_NUM_LOCK)) ? "on" : "- ",
+ (leds & (1 << USB_LED_CAPS_LOCK)) ? "on" : "- ",
+ (leds & (1 << USB_LED_SCROLL_LOCK)) ? "on" : "- ");
+
+ return host_led_state_str;
+}