diff options
author | 2016-03-22 22:15:18 -0400 | |
---|---|---|
committer | 2016-03-22 22:15:18 -0400 | |
commit | e8951d6e41e364a95f862a1d3544a52b32857148 (patch) | |
tree | a4a868a605e1f0564fd332c1c3f095c03491b6ea /tmk_core/common | |
parent | 403d756ad56de18488e3d048e849c55e77a20b32 (diff) | |
parent | 3d56ec052ed485d4b717da930c4024b4a3f792e0 (diff) | |
download | qmk_firmware-e8951d6e41e364a95f862a1d3544a52b32857148.tar.gz |
Merge pull request #199 from IBNobody/master
Added LED Indicator Support to QMK Template
Diffstat (limited to 'tmk_core/common')
-rw-r--r-- | tmk_core/common/led.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tmk_core/common/led.h b/tmk_core/common/led.h index d5fc051bf..2e18dc2af 100644 --- a/tmk_core/common/led.h +++ b/tmk_core/common/led.h @@ -34,8 +34,11 @@ extern "C" { void led_set(uint8_t usb_led); +/* keyboard-specific LED functionality */ +void led_set_kb(uint8_t usb_led); + #ifdef __cplusplus } #endif -#endif +#endif
\ No newline at end of file |