Hello,
Sorry that I did not give you the complete info. Like I said i'm new to Arduino and I did not know what info you need. Also, I have read every post and link that you gave me. I just did not understand the links to well. Please keep in mind that i'm only 16 and I don't know anybody who knows anything about Arduino or electrons in general.
Here is the code that is currently running on the Arduino ( I used the values you suggested; 600 and 2400)
#include <Servo.h>
Servo myservo; // create servo object to control a servo
void setup()
{
myservo.attach(9); // attaches the servo on pin 9 to the servo object
}
void loop()
{
Serial.begin(9600);
Serial.print(9600);
myservo.writeMicroseconds(600);
delay(100);
myservo.writeMicroseconds(2400);
}
Thanks for bearing with me,
Drew Davis