forked from mirrors/qmk_userspace
Merge commit 'a074364c37
' as 'tmk_core'
This commit is contained in:
commit
1a02ebcc61
533 changed files with 102049 additions and 0 deletions
21
tmk_core/common/sleep_led.h
Normal file
21
tmk_core/common/sleep_led.h
Normal file
|
@ -0,0 +1,21 @@
|
|||
#ifndef SLEEP_LED_H
|
||||
#define SLEEP_LED_H
|
||||
|
||||
|
||||
#ifdef SLEEP_LED_ENABLE
|
||||
|
||||
void sleep_led_init(void);
|
||||
void sleep_led_enable(void);
|
||||
void sleep_led_disable(void);
|
||||
void sleep_led_toggle(void);
|
||||
|
||||
#else
|
||||
|
||||
#define sleep_led_init()
|
||||
#define sleep_led_enable()
|
||||
#define sleep_led_disable()
|
||||
#define sleep_led_toggle()
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue