/* * Hello World! * *This is the Hello World for arduino. *It shows how to send data to the computer * */ void setup(){ // run once, when the sketck starts Serial.begin(9600); //set up serial library at 9600 bps Serial.println("Hello World!"); // prints Hello World! with ending line } void loop(){}