#include <Servo.h>
Servo servo1;
void setup() {
// put your setup code here, to run once:
servo1.attach(11);
}
void loop() {
// put your main code here, to run repeatedly:
servo1.write(180);
}
#include <Servo.h>
Servo servo1;
void setup() {
// put your setup code here, to run once:
servo1.attach(11);
}
void loop() {
// put your main code here, to run repeatedly:
servo1.write(180);
}