voilier-team-1/implementation/servo.h

13 lines
180 B
C

#ifndef MYSERVO_H
#define MYSERVO_H
#include "stm32f10x.h"
/*
180 correspond à 0°
0 correspond à 90°
*/
void MyServo_Init(void);
void MyServo_ChangeAngle(uint8_t Angle);
#endif