Private Variables and LEDs

I played around with my Arduino starter kit and read a few pages in Making Embedded Systems (more on it here). Now I am ready to blink the built-in LED of my board. My first approach looked like this: #define LED LED_BUILTIN void setup() { SetupLED(); } void loop() { EnableLED(); delay(1000); DisableLED(); delay(1000); } … Read more