13 lines
551 B
C
13 lines
551 B
C
#ifndef __APP_TM1629_H__
|
||
#define __APP_TM1629_H__
|
||
|
||
|
||
void app_tm1629_init(void);
|
||
uint8_t app_tm1629_Scan_Key(void);
|
||
void app_tm1629_inject_key(uint8_t key); /* RTT/测试:绕过扫描直接注入 */
|
||
void app_tm1629_inject_hold(uint8_t key); /* RTT/测试:注入并保持(物理空扫不释放,chord key 0 解除) */
|
||
void app_tm1629_set_chord_led(uint8_t key_idx, LedColor_TypeDef color);
|
||
void app_tm1629_set_led(LedNum_TypeDef led, LedColor_TypeDef color);
|
||
void app_tm1629_all_off(void);
|
||
void app_tm1629_all_on(LedColor_TypeDef color);
|
||
#endif |