Step 2: Make PCBs & Program PIC
The display PCB uses exclusively surface mount devices while the main clock PCB uses a mixture of surface mount and through-hole components.
It is important to program the PIC chip with the hex file prior to soldering into the circuit as there are no ICSP connections on the board.
Remove these ads by
Signing Up










































Visit Our Store »
Go Pro Today »




The schematic files were available in the zip files, but I have also uploaded them now as images to the instuctable for easier viewing.
I what soft was made this .sch?
could you explain this a little ?
The LEDs are multiplexed, so at any given time only 1 row is illumiated, the PIC is constantly turning each row on and off so fast that it looks as though all 3 rows are illuminated at the same time. All 17 LEDs are controlled by 6 data lines and 3 address lines.
First of all the PIC loads the data for the seconds into PORTB, it then sets the address line for the seconds row high (turning on the LEDs) after a very brief pause it sets the address line for the seconds row low (turning off the LEDs). Then it loads the data for the minutes row into PORTB, turns on the minutes address line, paues, then turns it off again. The hours are displayed in the same way, then the whole process starts again.
A good visual example of how to multiplex LEDs can be found here: http://www.franksworkshop.com.au/Electronics/RGB/RGB.htm
I hope this helps.