Story
My project is a simple yet useful tool used to hold your servo motor. It has a hole at the bottom so that the wires can fit through. At the base, it features a stable bottom to hold the Servo up and four holes so you can secure it to the floor. Below is code to get your Servo started. Just downlaod the Servo.h library in Arduino IDE and you'll be ready to start making your Servo project!
#include <Servo.h>
Servo myservo; // create servo object
void setup() {
myservo.attach(9); // attaches the servo on pin 9
}
void loop() {
myservo.write(180); // Spin full speed counterclockwise
delay(2000); // Wait 2 seconds
myservo.write(90); // Stop
delay(1000); // Wait 1 second
myservo.write(0); // Spin full speed clockwise
delay(2000); // Wait 2 seconds
}











