RPiPico-Holonome2023/Moteurs.h

11 lines
181 B
C
Raw Normal View History

#include "pico/stdlib.h"
enum t_moteur {
2022-11-18 14:16:13 +00:00
MOTEUR_A=0,
MOTEUR_B=1,
MOTEUR_C=2
};
void Moteur_Init(void);
2022-11-18 14:16:13 +00:00
void Moteur_SetVitesse(enum t_moteur moteur, int16_t vitesse );