#include <Servo.h>
Servo gearServo;
void setup() {
// put your setup code here, to run once:
gearServo.attach(5, 600, 2300);
delay (5000);
gearServo.write(120);
}
void loop() {
// put your main code here, to run repeatedly:
}
#include <Servo.h>
Servo gearServo;
void setup() {
// put your setup code here, to run once:
gearServo.attach(5, 600, 2300);
delay (5000);
gearServo.write(120);
}
void loop() {
// put your main code here, to run repeatedly:
}