Blinking LED (Arduino)
Brief
Experiment with creating different patterns of blinking LED. You can use Morse code, you can try to recreate a musical rhythm, or any other familiar patters. Use buttons and potentiometers to modify and control the execution of your code. Create 3 of those rhythmic patterns and capture their execution and modification on video for documentation.
Potentionmeter
Coding+Physical components
-Reading analog input signals from a potentiometer
-Controlling the blinking speed of an LED with a potentiometer
Potentiometer, Resistor, LED, Breadboard, Wires, and Arduino UNO board.
Display
3 different rhythmic patterns of LED controlled by a potentiometer
Button
Coding+Physical components
For the button, I use millis() To perform the blinking LED without using the delay() Function.
-Reading a push-button to determine the rate at which the LED should blink.
- If I hold the push button down for x milliseconds, the LED will blink on and off every x milliseconds.
Button, Resistor, LED, Breadboard, Wires, and Arduino UNO board.
Display
3 different rhythmic patterns of LED controlled by a button