document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. void setup() {
  2.   // initialize digital pin 13 as an output.
  3.   pinMode(8, OUTPUT);
  4. }
  5.  
  6. // the loop function runs over and over again forever
  7. void loop() {
  8.   digitalWrite(8, HIGH);   // turn the LED on (HIGH is the voltage level)
  9.   delay(1000);              // wait for a second
  10.   digitalWrite(8, LOW);    // turn the LED off by making the voltage LOW
  11.   delay(1000);              // wait for a second
  12. }
');