mirror of
https://github.com/yoboujon/dumber.git
synced 2025-06-08 13:50:49 +02:00
22 lines
440 B
C
22 lines
440 B
C
/*
|
|
* moteurs.h
|
|
*
|
|
* Created on: Sep 12, 2022
|
|
* Author: dimercur
|
|
*/
|
|
|
|
#ifndef INC_MOTEURS_H_
|
|
#define INC_MOTEURS_H_
|
|
|
|
#include "application.h"
|
|
|
|
void MOTEURS_Init(void);
|
|
//void MOTEURS_Set(uint8_t mot, int16_t val);
|
|
//void MOTEURS_Test (void);
|
|
void MOTEURS_Avance(int32_t distance);
|
|
void MOTEURS_Tourne(int32_t tours);
|
|
void MOTEURS_Stop(void);
|
|
|
|
void MOTEURS_TimerEncodeurUpdate (TIM_HandleTypeDef *htim);
|
|
|
|
#endif /* INC_MOTEURS_H_ */
|