/* cl_ss_LED_test.ino Blinking LED (1Hz) */ // Pin 7 has an LED connected on the creative-lab soldering board const byte led = 7; void setup() { // the setup routine runs once pinMode(led, OUTPUT);} // initialize the digital pin as an output. void loop() { // the loop routine runs over and over again forever digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level) delay(500); // wait for 500ms digitalWrite(led, LOW); // turn the LED off by making the voltage LOW delay(500);} // wait for 500ms