/sevseg-display-with-pic

3 digit 7 segment display multiplexing with PIC 16f677 CCS C

Primary LanguageC

sevseg-display-with-pic | CCS(PCWHD) compiler

3 digit 7 segment display multiplexing with PIC 16f677 CCS C

Connect C0 to C6 to the segment A to G.

Connect B5 to A7 to the digit 1 to 3.

image

You just only need to change number in Show( ); function.

void main() {
   CPU_SETUP(); 
   while (true){
      Show(123);  		// The number that you want to display.
   }
}

THANK YOU.