Arduino Uno by ecolor3388

Cloned from Sketch Arduino Uno by codebender_walkthrough

This sketch is missing a short description
void setup() { //UNO has a built-in LED on pin 13, and we can use the LED_BUILTIN Macro pinMode(LED_BUILTIN, OUTPUT); } void loop() { //Set the LED pin to HIGH. This gives power to the LED and turns it on digitalWrite(LED_BUILTIN, HIGH); //Wait for a second delay(1000); //Set the LED pin to LOW. This turns it off digitalWrite(LED_BUILTIN, LOW); //Wait for a second delay(1000); }

Embed This Sketch

Use the following HTML code to embed the sketch code above in your blog or website.

<iframe style="height: 510px; width: 100%; margin: 10px 0 10px;" allowTransparency="true" src="https://codebender.cc/embed/sketch:52284" frameborder="0"></iframe>

Embed The Serial Monitor

You can also embed the Serial Monitor section! Just use this HTML code.

<iframe style="height: 510px; width: 100%; margin: 10px 0 10px;" allowTransparency="true" src="https://codebender.cc/embed/serialmonitor" frameborder="0"></iframe>