// learn how to do multiplexing with LED ring light, MAX7219 chip and Arduino UNO
// since WOKWI does not support LED ring light, for simulation, the 8x8 LED Matrix Display is used instead
// created by upir, 2023
// youtube channel: https://www.youtube.com/upir_upir
// Youtube video: https://youtu.be/sE3LSYoCqLQ
// Source files: https://github.com/upiir/led_ring_light_with_max7219
// Links from the video:
// LED ring light: https://s.click.aliexpress.com/e/_DmvHFpp
// MAX7219 module: https://s.click.aliexpress.com/e/_DkX1kNF
// Round hole pin header: https://s.click.aliexpress.com/e/_DkUOru9
// Arduino UNO: https://s.click.aliexpress.com/e/_AXDw1h
// Arduino prototyping shield: https://s.click.aliexpress.com/e/_ApbCwx
// Breadboard wires: https://s.click.aliexpress.com/e/_Dkbngin
// 8x8 LED Matrix Display connections: https://acoptex.com/project/160/basics-project-032a-8x8-dot-led-matrix-64-led-digital-display-common-anode-and-common-cathode-at-lex-c/
// LedControl library: https://github.com/wayoda/LedControl
// WOKWI Matrix Display documentation: https://docs.wokwi.com/parts/wokwi-max7219-matrix
// Other videos using 8x8 LED Matrix display and Multiplexing (MAX7219)
// Pimp my potentiometer (part 1): https://youtu.be/tHL4RYGSvg4
// Matrix display counter: https://youtu.be/jlhcDzS17vU
// Matrix display stencil overlays: https://youtu.be/oLgUtjyKO6Q
// Wood clock: https://youtu.be/50bVXHYW_9Q
#include "LedControl.h" // LedControl library is used to interface the MAX7219 chip (and the LED Ring Light)
LedControl lc=LedControl(/*DIN*/11,/*CLK*/13,/*CS*/10,/*number of displays*/1); // initialization of the display
void setup() {
lc.shutdown(0,false); // The MAX72XX is in power-saving mode on startup, we have to do a wakeup call
lc.setIntensity(0,8); // Set the brightness to a medium values
lc.clearDisplay(0); // clear the display
pinMode(A0, INPUT); // set pin A0 to be analog input for reading the potentiometer value
}
void loop() { // main loop
int potentiometer_value = analogRead(A0); // read the potentiometer value from pin A0
potentiometer_value = map(potentiometer_value, 0, 1023, 0, 32); // remap the value from 0-1023 to 0-32
for(int row=0;row<4;row++) { // for every row
for(int col=0;col<8;col++) { // for every column
if ((col + (row * 8)) < potentiometer_value) { // if the current LED index is smaller than the potentiometer value...
lc.setLed(0,row,col,true); // turn the LED on
} else { // otherwise...
lc.setLed(0,row,col,false); // turn the LED off
}
}
}
}
uno:A5.2
uno:A4.2
uno:AREF
uno:GND.1
uno:13
uno:12
uno:11
uno:10
uno:9
uno:8
uno:7
uno:6
uno:5
uno:4
uno:3
uno:2
uno:1
uno:0
uno:IOREF
uno:RESET
uno:3.3V
uno:5V
uno:GND.2
uno:GND.3
uno:VIN
uno:A0
uno:A1
uno:A2
uno:A3
uno:A4
uno:A5
matrix1:V+
matrix1:GND
matrix1:DIN
matrix1:CS
matrix1:CLK
matrix1:V+.2
matrix1:GND.2
matrix1:DOUT
matrix1:CS.2
matrix1:CLK.2
pot1:GND
pot1:SIG
pot1:VCC