This commit is contained in:
vadyschka01
2026-04-30 16:32:21 +03:00
commit 4d694ecf43
76 changed files with 45118 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef MOTORS_H
#define MOTORS_H
#include <stdint.h>
void Motors_Init(void);
void Set_Motors(int val);
void Set_Motor_Individual(int m1, int m2, int m3, int m4);
void Motors_StartupDelay(void);
void Motors_Stop(void);
void Motors_Idle(void);
void Motors_Arm(void);
void Motors_Disarm(void);
#endif