Lab 03 - Using LED's with an Arduino
Labs
In this lab, we will be learning how to control simple digital circuits using a microcontroller. The micro we will be using is called an atmega328p, and it is embedded in a development board called an Arduino.
int ledPin = 2;
void setup() {
pinMode...