2020-10-20 14:43:40 +00:00
|
|
|
/*******************************************************************************
|
2020-10-23 11:11:06 +00:00
|
|
|
* @file led.h
|
2020-10-20 14:43:40 +00:00
|
|
|
* @author: MQjehovah mail:MQjehovah@hotmail.com
|
|
|
|
* @version 1.0.0
|
2020-10-23 11:11:06 +00:00
|
|
|
* @date 2020.0.23
|
2020-10-20 14:43:40 +00:00
|
|
|
* @brief
|
|
|
|
******************************************************************************
|
|
|
|
* @attention
|
|
|
|
*******************************************************************************/
|
2020-10-23 11:11:06 +00:00
|
|
|
#ifndef __LED_H
|
|
|
|
#define __LED_H
|
2020-10-20 14:43:40 +00:00
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
|
|
#include "stm32f10x_conf.h"
|
|
|
|
/* Definition ----------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/* Exported Functions --------------------------------------------------------*/
|
2020-10-23 11:11:06 +00:00
|
|
|
void LED_Config();
|
|
|
|
void LED_ON(uint8_t index);
|
|
|
|
void LED_OFF(uint8_t index);
|
|
|
|
|
2020-10-20 14:43:40 +00:00
|
|
|
#endif
|
2020-10-23 11:11:06 +00:00
|
|
|
/*********************************END OF FILE**********************************/
|