This commit is contained in:
2025-11-28 18:26:32 -06:00
commit 8bb08d2819
21 changed files with 3309 additions and 0 deletions

7
include/pwm.h Normal file
View File

@@ -0,0 +1,7 @@
#ifndef PWM_H
#define PWM_H
void init_servo_PWM(void);
void set_servo_speed(int channel, int speed);
#endif