exotic-13
Newbie
i wanna make a counter that goes from 00 to 59 using two bcd displayers , how can i do this and please i need some youtube channels that would help improve myself .
the program is the following :
[code tags added by moderator]
the program is the following :
Code:
void main () {
TRISB=0;
for(i=0; i<=5; i++);
{ for(j=0; j<=9; j++);
{ PORTB=j; i<<4;
delay_ms(1000);
}
i=i++
}
}
[code tags added by moderator]
Last edited by a moderator: