mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-04-01 21:39:52 +00:00
10 lines
122 B
C
10 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);
|
|
}
|