13 lines
272 B
C
13 lines
272 B
C
#ifndef MYPLATEAU_H
|
|
#define MYPLATEAU_H
|
|
#define HORRAIRE 0
|
|
#define ANTI_HORRAIRE 1
|
|
#include "stm32f10x.h"
|
|
|
|
void Init_Plateau (void);
|
|
void Set_Direction (char sens);
|
|
void Set_Vitesse (char vitesse);
|
|
|
|
void Set_Moteur_Plateau(char sens, char vitesse);
|
|
|
|
#endif
|