John99407
Junior Member level 3
Hi!, I'm trying to build a basic counter as a test for figuring out how to interface with multiple 7-segment LEDs. I have a 4-digit cc(common anode)-type 7-segment multiplexed display unit. I'm working displaying numbers on 7 segment LED display by multiplexing. I want to convert decimal values to 7 segments patterns
Code:
void display (int i)
{
}
void main ()
{
unsigned int i = 0;
for (i= 0; i<10000; i++)
{
display (i);
}
}