mirror of
https://github.com/yoboujon/dumber.git
synced 2025-06-08 22:00:49 +02:00
15 lines
252 B
C
15 lines
252 B
C
#ifndef LED_H
|
|
#define LED_H
|
|
|
|
#include "stm32f10x.h"
|
|
|
|
#define RED 255
|
|
#define GREEN 250
|
|
|
|
void MAP_LEDpin(void);
|
|
void INIT_TIM3Led(void);
|
|
void LEDgreen(void);
|
|
void LEDred(void);
|
|
void LEDoff(void);
|
|
void LEDorange(void);
|
|
#endif /* LED_H */
|