Motor.begin()
1196357542(讨论 | 贡献)2017年7月14日 (五) 08:27的版本
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();
}
其他