Motor.begin()
Motor.begin()
作用
电机初始化
参数
无参数
返回值
无返回值
示例
#include <Microduino_Motor.h>
Motor MotorLeft(MOTOR0_PINA, MOTOR0_PINB);
Motor MotorRight(MOTOR1_PINA, MOTOR1_PINB);
void setup()
{
Serial.begin(115200);
Serial.println("Microduino_Motor!");
MotorLeft.begin();
MotorRight.begin();
}
其他