voilier-team-1/implementation/servo.h

13 lines
176 B
C

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