You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef LED_H
|
|
#define LED_H
|
|
#include "stdint.h"
|
|
|
|
|
|
/* keyboard LEDs */
|
|
#define USB_LED_NUM_LOCK 0
|
|
#define USB_LED_CAPS_LOCK 1
|
|
#define USB_LED_SCROLL_LOCK 2
|
|
#define USB_LED_COMPOSE 3
|
|
#define USB_LED_KANA 4
|
|
|
|
|
|
void led_set(uint8_t usb_led);
|
|
|
|
#endif
|