voilier-team-1/implementation/servo.h

14 lines
180 B
C
Raw Normal View History

#ifndef MYSERVO_H
#define MYSERVO_H
#include "stm32f10x.h"
/*
180 correspond <EFBFBD> 0<EFBFBD>
0 correspond <EFBFBD> 90<EFBFBD>
*/
2023-04-07 13:53:08 +02:00
void MyServo_Init(void);
void MyServo_ChangeAngle(uint8_t Angle);
#endif