#include <Servo.h> Servo myservo; void setup(){ myservo.attach(11); myservo.write(90); } void loop(){}