voilier-team-1/keilproject/Source/Principale.c

20 lines
290 B
C
Raw Normal View History

2023-03-22 15:28:54 +01:00
#include "stm32f10x.h"
#include "servo.h"
#include "motoreducteur.h"
2023-04-05 08:25:25 +02:00
#include "rtc.h"
2023-03-22 15:28:54 +01:00
int main (void)
{
MyServo_Init();
MyServo_ChangeAngle(179);
2023-04-05 08:25:25 +02:00
//MyMotor_Init();
2023-04-05 08:25:25 +02:00
//MyMotor_ChangeSpeed(2000);
//MyMotor_ChangeDirection(HORAIRE);
2023-04-05 08:25:25 +02:00
MyRTC_Init();
MyRTC_GetTime();
while(1){};
}