TP_Voilier/FileInclude/Plateau.h
2022-10-28 10:04:14 +02:00

13 lines
296 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); // -1 gauche et 1 droite
#endif