Servo.detach()
Servo.detach()
作用
将当前舵机断开连接
参数
无
返回值
无
示例
#include <Servo.h>
Servo myservo; // create servo object to control a servo
// a maximum of eight servo objects can be created
#define servoPin D9
int pos = 0; // variable to store the servo position
void setup()
{
myservo.attach(servoPin); // attaches the servo on pin 9 to the servo object
}
void loop()
{
}
其他
【Servo】