]> git.donarmstrong.com Git - qmk_firmware.git/blob - led.h
minor fix for HHKB Makefile and doc
[qmk_firmware.git] / led.h
1 #ifndef LED_H
2 #define LED_H
3 #include "stdint.h"
4
5
6 /* keyboard LEDs */
7 #define USB_LED_NUM_LOCK                0
8 #define USB_LED_CAPS_LOCK               1
9 #define USB_LED_SCROLL_LOCK             2
10 #define USB_LED_COMPOSE                 3
11 #define USB_LED_KANA                    4
12
13
14 void led_set(uint8_t usb_led);
15
16 #endif