#include <Servo.h>
Servo myservo; // create servo object to control a servo
int pos = 0; // variable to store the servo position
void setup() {
myservo.attach(23); // attaches the servo on pin 9 to the servo object
}
void loop() {
myservo.write(0);
}