boat-project/implementation/servo.h
2023-04-07 13:53:08 +02:00

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