#include <Servo.h>
// Variables and objects about servo
int servoPin = 3;
Servo myservo;
void setup() {
myservo.attach(servoPin);
}
void loop() {
// put your main code here, to run repeatedly:
}
#include <Servo.h>
// Variables and objects about servo
int servoPin = 3;
Servo myservo;
void setup() {
myservo.attach(servoPin);
}
void loop() {
// put your main code here, to run repeatedly:
}