Random flashing MAX7219 example

Another MAX7219 example using random numbers to randomly light an LED in the matrix, you may want to increase the delay Code #include “LedControl.h” //  need the library LedControl lc=LedControl(12,11,10,1);…

Read more

LED count down

This is a hexadecimal counter using LEDs. It will start at 0xFF and count down 1   Code #include <reg52.h> void delay(unsigned int i); main() { unsigned char Num =…

Read more