#include <Servo.h>
Servo servoku;
const int servoPin = 11;
void setup() {
// put your setup code here, to run once:
servoku.attach(servoPin);
}
void loop() {
// put your main code here, to run repeatedly:
servoku.write(1000);
delay((1000));
servoku.write(0);
delay((1000));
}