17 lines
259 B
C
17 lines
259 B
C
|
|
#ifndef __HWCTRL_H__
|
|
#define __HWCTRL_H__
|
|
#include "r_cg_macrodriver.h"
|
|
|
|
#define LED_ON 0
|
|
#define LED_OFF 1
|
|
|
|
|
|
uint8_t GetKeyState(uint8_t keyno);
|
|
|
|
void FanLED_Ctrl(uint8_t state);
|
|
void HeatLED_Ctrl(uint8_t state);
|
|
void AnmoLED_Ctrl(uint8_t state);
|
|
|
|
#endif
|