Files
SmartBin_STM_Woer/STM32_4路称重_Git提交精简工程/src/HARDWARE/LED/led.h
T

25 lines
627 B
C
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*************************** (C) COPYRIGHT 2017 YNHB ****************************
* 文件名 led.h
* 描 述 :LED驱动代码
* 版 本 V1.0
* 作 者 XuZhongPing
* 日 期 2017/09/02
*********************************************************************************/
#ifndef __LED_H
#define __LED_H
#include "stm32f10x.h"
extern uint8_t fillLightMask;
void LED_Init(void); //初始化
void SetLedOn(void);
void SetLedOff(void);
void SetLedToggle(void);
void LED_Task(void);
#endif
/******************** (C) COPYRIGHT 2017 YNHB *****END OF FILE*******************/