#include <Servo.h>
Servo SERVO1;
Servo SERVO2;
void setup() {
SERVO1.attach(11);
SERVO2.attach(10);
}
void loop() {
SERVO1.write(180);
delay(50);
SERVO1.write(0);
delay(50);
for(int a=0; a<=180;++a) {
SERVO2.write(a);
delay(5);
}
for(int i=180; i>=0;--i){
SERVO2.write(i);
delay(5);
}
}