#include <Servo.h> Servo my_servo; void setup() { my_servo.attach(9); my_servo.write(70); } void loop() { }