diff options
Diffstat (limited to 'keyboards/lily58/lib')
-rw-r--r-- | keyboards/lily58/lib/glcdfont_lily.c (renamed from keyboards/lily58/lib/glcdfont.c) | 1 | ||||
-rw-r--r-- | keyboards/lily58/lib/host_led_state_reader.c | 9 | ||||
-rw-r--r-- | keyboards/lily58/lib/keylogger.c | 1 | ||||
-rw-r--r-- | keyboards/lily58/lib/layer_state_reader.c | 8 | ||||
-rw-r--r-- | keyboards/lily58/lib/mode_icon_reader.c | 1 | ||||
-rw-r--r-- | keyboards/lily58/lib/timelogger.c | 1 |
6 files changed, 13 insertions, 8 deletions
diff --git a/keyboards/lily58/lib/glcdfont.c b/keyboards/lily58/lib/glcdfont_lily.c index 94f026ba9..0aa69ea82 100644 --- a/keyboards/lily58/lib/glcdfont.c +++ b/keyboards/lily58/lib/glcdfont_lily.c | |||
@@ -1,6 +1,7 @@ | |||
1 | // This is the 'classic' fixed-space bitmap font for Adafruit_GFX since 1.0. | 1 | // This is the 'classic' fixed-space bitmap font for Adafruit_GFX since 1.0. |
2 | // See gfxfont.h for newer custom bitmap font info. | 2 | // See gfxfont.h for newer custom bitmap font info. |
3 | 3 | ||
4 | // Modified to show the Lily58 logo instead of the qmk logo | ||
4 | #include "progmem.h" | 5 | #include "progmem.h" |
5 | 6 | ||
6 | // Standard ASCII 5x7 font | 7 | // Standard ASCII 5x7 font |
diff --git a/keyboards/lily58/lib/host_led_state_reader.c b/keyboards/lily58/lib/host_led_state_reader.c index 0e22173b1..589dd6152 100644 --- a/keyboards/lily58/lib/host_led_state_reader.c +++ b/keyboards/lily58/lib/host_led_state_reader.c | |||
@@ -1,15 +1,16 @@ | |||
1 | #include <stdio.h> | 1 | #include <stdio.h> |
2 | #include "led.h" | ||
3 | #include "host.h" | ||
2 | #include "lily58.h" | 4 | #include "lily58.h" |
3 | 5 | ||
4 | char host_led_state_str[24]; | 6 | char host_led_state_str[24]; |
5 | 7 | ||
6 | const char *read_host_led_state(void) | 8 | const char *read_host_led_state(void) |
7 | { | 9 | { |
8 | uint8_t leds = host_keyboard_leds(); | ||
9 | snprintf(host_led_state_str, sizeof(host_led_state_str), "NL:%s CL:%s SL:%s", | 10 | snprintf(host_led_state_str, sizeof(host_led_state_str), "NL:%s CL:%s SL:%s", |
10 | (leds & (1 << USB_LED_NUM_LOCK)) ? "on" : "- ", | 11 | (IS_HOST_LED_ON(USB_LED_NUM_LOCK)) ? "on" : "- ", |
11 | (leds & (1 << USB_LED_CAPS_LOCK)) ? "on" : "- ", | 12 | (IS_HOST_LED_ON(USB_LED_CAPS_LOCK)) ? "on" : "- ", |
12 | (leds & (1 << USB_LED_SCROLL_LOCK)) ? "on" : "- "); | 13 | (IS_HOST_LED_ON(USB_LED_SCROLL_LOCK)) ? "on" : "- "); |
13 | 14 | ||
14 | return host_led_state_str; | 15 | return host_led_state_str; |
15 | } | 16 | } |
diff --git a/keyboards/lily58/lib/keylogger.c b/keyboards/lily58/lib/keylogger.c index a1bd476d2..2fc3e663e 100644 --- a/keyboards/lily58/lib/keylogger.c +++ b/keyboards/lily58/lib/keylogger.c | |||
@@ -1,4 +1,5 @@ | |||
1 | #include <stdio.h> | 1 | #include <stdio.h> |
2 | #include "action.h" | ||
2 | #include "lily58.h" | 3 | #include "lily58.h" |
3 | 4 | ||
4 | char keylog_str[24] = {}; | 5 | char keylog_str[24] = {}; |
diff --git a/keyboards/lily58/lib/layer_state_reader.c b/keyboards/lily58/lib/layer_state_reader.c index 48674b067..0e9dd7039 100644 --- a/keyboards/lily58/lib/layer_state_reader.c +++ b/keyboards/lily58/lib/layer_state_reader.c | |||
@@ -4,10 +4,10 @@ | |||
4 | #include "lily58.h" | 4 | #include "lily58.h" |
5 | 5 | ||
6 | #define L_BASE 0 | 6 | #define L_BASE 0 |
7 | #define L_LOWER 2 | 7 | #define L_LOWER (1 << 1) |
8 | #define L_RAISE 4 | 8 | #define L_RAISE (1 << 2) |
9 | #define L_ADJUST 8 | 9 | #define L_ADJUST (1 << 3) |
10 | #define L_ADJUST_TRI 14 | 10 | #define L_ADJUST_TRI (L_ADJUST | L_RAISE | L_LOWER) |
11 | 11 | ||
12 | char layer_state_str[24]; | 12 | char layer_state_str[24]; |
13 | 13 | ||
diff --git a/keyboards/lily58/lib/mode_icon_reader.c b/keyboards/lily58/lib/mode_icon_reader.c index 2bce4a71b..27c6d92cd 100644 --- a/keyboards/lily58/lib/mode_icon_reader.c +++ b/keyboards/lily58/lib/mode_icon_reader.c | |||
@@ -1,4 +1,5 @@ | |||
1 | #include <stdio.h> | 1 | #include <stdio.h> |
2 | #include <stdbool.h> | ||
2 | #include "lily58.h" | 3 | #include "lily58.h" |
3 | 4 | ||
4 | char mode_icon[24]; | 5 | char mode_icon[24]; |
diff --git a/keyboards/lily58/lib/timelogger.c b/keyboards/lily58/lib/timelogger.c index bfbfbe8a2..b00c13cb0 100644 --- a/keyboards/lily58/lib/timelogger.c +++ b/keyboards/lily58/lib/timelogger.c | |||
@@ -1,4 +1,5 @@ | |||
1 | #include <stdio.h> | 1 | #include <stdio.h> |
2 | #include "timer.h" | ||
2 | #include "lily58.h" | 3 | #include "lily58.h" |
3 | 4 | ||
4 | char timelog_str[24] = {}; | 5 | char timelog_str[24] = {}; |