document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. void setup() {
  2. pinMode(9, OUTPUT);
  3. }
  4.  
  5.  
  6. void loop() {
  7. digitalWrite(9, HIGH);
  8. delay(500);
  9. digitalWrite(9, LOW);
  10. delay(500);
  11. }
');