Testing "Copy as HTML" in Arduino
/* * Blink - the basic Arduino example. */ int ledPin = 13; // LED connected to pin 13 void setup() // run once { pinMode(ledPin, OUTPUT); // sets the pin as output } void loop() // run over and over again { digitalWrite(ledPin, HIGH); // sets the LED on delay(1000); // waits for a second digitalWrite(ledPin, LOW); // sets the LED off delay(1000); // waits for a second }