2018-08-22 09:51:37 -07:00
|
|
|
#include <stdio.h>
|
2023-05-20 05:13:39 -07:00
|
|
|
#include "quantum.h"
|
2018-06-08 15:28:28 -07:00
|
|
|
|
2018-08-22 09:51:37 -07:00
|
|
|
char host_led_state_str[24];
|
2018-06-08 15:28:28 -07:00
|
|
|
|
2018-08-22 09:51:37 -07:00
|
|
|
const char *read_host_led_state(void)
|
2018-06-08 15:28:28 -07:00
|
|
|
{
|
2023-07-02 11:24:22 -07:00
|
|
|
led_t led_state = host_keyboard_led_state();
|
2018-08-22 09:51:37 -07:00
|
|
|
snprintf(host_led_state_str, sizeof(host_led_state_str), "NL:%s CL:%s SL:%s",
|
2023-07-02 11:24:22 -07:00
|
|
|
(led_state.num_lock) ? "on" : "- ",
|
|
|
|
(led_state.caps_lock) ? "on" : "- ",
|
|
|
|
(led_state.scroll_lock) ? "on" : "- ");
|
2018-06-08 15:28:28 -07:00
|
|
|
|
2018-08-22 09:51:37 -07:00
|
|
|
return host_led_state_str;
|
2018-06-08 15:28:28 -07:00
|
|
|
}
|