My arduino,breadboard,wires and servo are at the post office. Along with my fathers arduino stuff he ordered. Its in his name so he has to pick it up. I have already written my first test sketch. its a hello world serial sketch.
void setup() {
Serial.begin(9600);
}
void loop()
{ Serial.println("Hello World!"); delay(1000); Serial.println("I'm An Arduino Uno!"); delay(1000); Serial.println("I Have An Atmega 328 Processor!"); delay(1000); Serial.println("I Can Do Many Cool Things!"); delay(1000); Serial.println("Like What I'm Doing Right Now!"); delay(1000);
}