Skip to content

Instantly share code, notes, and snippets.

// Blinking LED
const int LED = 13; // LED connected to
// tutorial 1
// digital pin 13
void setup()
{
pinMode(LED, OUTPUT); // sets the digital
// pin as output
}