mirror of
https://github.com/moparisthebest/tmk_keyboard
synced 2024-10-31 23:45:02 -04: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);
|
||
|
}
|