mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 18:49:08 +00:00
9 lines
122 B
C
9 lines
122 B
C
#include "stdint.h"
|
|
#include "adb.h"
|
|
#include "led.h"
|
|
|
|
|
|
void led_set(uint8_t usb_led)
|
|
{
|
|
adb_host_kbd_led(~usb_led);
|
|
}
|