“Motor.begin()”的版本间的差异
1196357542(讨论 | 贡献) |
1196357542(讨论 | 贡献) |
||
第16行: | 第16行: | ||
<p style="color: #E87E05;font-size:135%">'''示例'''</p> | <p style="color: #E87E05;font-size:135%">'''示例'''</p> | ||
− | < | + | <source lang="cpp"> |
#include <Microduino_Motor.h> | #include <Microduino_Motor.h> | ||
第32行: | 第32行: | ||
} | } | ||
− | </ | + | </source> |
+ | |||
+ | |||
+ | <p style="color: #E87E05;font-size:135%">'''其他'''</p> | ||
+ | *'''[[Motor.setSpeed()|setSpeed()]]''' | ||
+ | *'''[[Motor.Brake()|Brake()]]''' | ||
+ | |||
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();
}
其他