#include "Servo.h"
Servo myservo;
void setup() {
// put your setup code here, to run once:
myservo.attach(3);
myservo.write(100);
}
void loop() {
// put your main code here, to run repeatedly:
}
#include "Servo.h"
Servo myservo;
void setup() {
// put your setup code here, to run once:
myservo.attach(3);
myservo.write(100);
}
void loop() {
// put your main code here, to run repeatedly:
}