#include <Servo.h> int angle = 90; Servo myServo; void setup() { Serial.begin(9600); myServo.attach(4, 600, 2400); myServo.write(angle); ...
確定! 回上一頁