You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
231 B

#ifndef __MOTOR_H__
#define __MOTOR_H__
#include <Arduino.h>
void Motor_Init(void);
void PWM_SetDuty(uint16_t DutyA, uint16_t DutyB);
void Motor_Control(int Cnt_L, int Cnt_R);
void User_Robot_Task(void *SoccerRobot_Task);
#endif