Full Binary Clock

43K11033

Intro: Full Binary Clock

I was wandering the internet looking for a good arduino tutorial on how to build a binary clock with seconds, but I could not find one. So now I am  writing this for you to have a binary clock with seconds, minutes, and hours.

What I did:
-Because controlling 20 LEDs individually for this cube would be messy, I multiplexed.
-I used an ATtiny84 and a SN74HC164N to control the clock. This makes the clock cheaper and smaller.
-I built it all on two PCB boards and affixed a stand, power plug, and buttons.

STEP 1: Parts List

Somethings you have to have to make a binary clock, others are optional and I will try to give you ideas to use what you have.

Required Parts:
-20 LEDs, any color I used 5mm I wouldn't recommend 10 unless you have the space
-6  PN2222 transistor, or any that you have that are simmilar
-2  push buttons, any flavor of interface you want to try would work buttons are easy
-2  1K resistors, for the buttons
-10 resistors for LEDs, i used 470ohm you could use as low 100ohm but they would be very bright at night
-various wire for connections

Choices:
Controller
  -I used ATtiny84 and SN74HC164, I choose it because it was small, cheep, and easy to use with this option you will use the shift register to control one side of the LED matrix 
  -ATmega, any of this series would work as long as you have a programmer and the space
  -Arduino Board, I don't recommend spending the money on this option and it also takes up a lot of space
  -ATtiny with only 6 I/O if you use two shift registers
  -The library is written for arduino and feels free to use anything else that you would re-code
 *Use a DIP socket for whichever controller you choose to use.
Power
  -I used USB charger and cable to power it
  -any 5V power supply would work, just make sure it works with your controller
PCB
  -Some type of board is needed. I used two small boards, 4cm x 6cm and 3cm x 7cm. I have seen cardboard used for the LEDs but i do not recommend cardboard for the controller.
Stand
  -I used polymorph, it's cool stuff to have around
  -origami would work




STEP 2: My Multiplexing

I use the SN74HC164 shift register and PN2222 transistor to shift on each column of the LED matrix to ground faster than the eye can see. When the correct column is grounded then the ATtiny then outputs HIGH to the LED that represents the time.

When a the transistor emitter is connected to ground the transistor will provide ground, from collector, if the base is connected to Vcc.

STEP 3: Wiring

Wiring will depend on your design choices but here are the connections you need to make.

1. Solder your LED matrix as in the diagram, note it is drawn from the back make sure the cathode and anodes are corrected to ground and Vcc, respectively
2. Connect the LEDs ground to the emitter of the transistor
3. Solder the push buttons and DIP sockets on the board 
4. Connect power and ground to all the right parts
5. Connect the 1K resistor to ground and the resistor, connect Vcc to the push button, and connect an input of the ATtiny to the push button
6. Solder the 470ohm resistors next to the DIP sockets, 6 go to the SN74HC164 and 4 the outputs of the ATtiny
7. Connect the 6 resistors to the base of each transistor, they need to be in order of A-F so they multiplexing works
8. Connect the 4 resistors to each anode layer
9. Connect 2 outputs of the ATtiny to the clock and data of the shift registor

STEP 4: Build a Stand

I used polymorph, this is not necessary. Use whatever material you want to support your clock.

STEP 5: Programming the ATtiny84

If you have an arduino you also have a free In System Programmer (ISP)

1. Connect the following:
    Vcc to  pin 1   on ATtiny
    Gnd to pin 14 on ATtiny
    D10 to pin 4   on ATtiny
    D11 to pin 7   on ATtiny
    D12 to pin 8   on ATtiny
    D13 to pin 9   on ATtiny
2. For the rest follow instructions here

(If that site is down then here is a different instructional on it with the file attached to this step.
https://www.instructables.com/id/Program-an-ATtiny-with-Arduino/
Or here as a third backup
https://code.google.com/p/arduino-tiny/ )


The instructions are great and easy to use.

STEP 6: The Code

The code is divided into functions to make changes easier.


Step by Step Walk Through:

#define
This sets up all of the pin outs for the ATtiny

setup()
assigns pinMode to all pins
I had problems with configuring my binary clock to be the same as my watch so i added a configuration setting, pressing the hour button bypasses this option
shiftOut send the byte of data 0xff, B11111111 in binary, to the shift register this turns on all columns
digitalWrite then lights up one layer
then it waits for the hour button or the minute button; the hour button skips the adjustment process the minute starts the timmer
another layer lights up and begins counting
when you are done with 60 seconds press the HOUR BUTTON, it changed buttons 

loop()
lastSecond stores when the clock added a second, if it is over the testTime then it adds a second
testTime was configured or bypassed earlier the default is 1000
the if()s evaluate if the minute or hour need to be changed, I added an if() not used if you want your minute button to count down
all of the unit variables sUnit, mUnit, and hUnit are given the value of the ones place for seconds, minutes, and hours
the buttons are then asked if they are on
the function activate() is called, described next

activate()
this will turn on all of the LEDs for the current time
*a note about not using a shift register, use the one labeled that - I haven't tested so i hope it works for you
when the clock is LOW data can be written to it and will be shifted when clock is pulled HIGH
doing this while allowing for the layer to be activated
there is a delay so your eyes will see the LED
then all of the layers are turned off before the next layer is loaded
rinse and repeat...

layer()
one, two, four, and eight correspond to the value of the LED, in binary, will be turned high or low...
its a lot of numbers that will blink in the way know to be a clock

led() 
turns on the layer corresponding to the time value



33 Comments

Hi i would like to ask you a couple of questions, do the switches need a power supply? I have 2 terminal switches can I use them or do I need 4 and what would they and the usb come under in circuit Wizard program. Also could this device be powered from a battery? If so how? Many thanks for your time. Or anyone who helps me

How can I use an RTC module with this?

Hi could you put a schematic diagram of how to wire up an Arduino in place of the Attiny84? As really struggling to program the Attiny84 and happy to use an uno for this project. Thank you so much regards Nick
Hi could you put a schematic diagram of how to wire up an Arduino in place of the Attiny84? As really struggling to program the Attiny84 and happy to use an uno for this project. Thank you so much regards Nick

hi i am unsure of how to wire up the buttons i have 2 momentary switches i understand that the 4 pins are connected in 2's what does BL BR TL TR mean? also my buttons have no indication of which way round they go please help im new to electronics many thank Nick

just spent the last 5 hours building this! and.... i messed something up the minute and seconds blink together and the hours do not light up at all.....

You can try to light up the array without the code. Attach 5V to a resistor and try to light up each of LEDs one at a time. This will tell you if it is a hardware or software. If the hardware is wrong rewire. If the code is wrong just double check it for errors.

How do you set the time? and is it possible to run it on a coin battery ?

You set it from the two buttons on the front.

The coin button is 3.3V while I ran my clock at 5V. I think the ATtiny can run at a lower voltage but it involves changing the clock speed.

so i got the programming to take i want to make sure that the pin 13 from the Atiny84 connects to pin 1 & 2 on the second chip and does TL and BL of each button connect together

so i got the programming to take i want to make sure that the pin 13 from the Atiny84 connects to pin 1 & 2 on the second chip and does TL and BL of each button connect together

how do you know if the programming took on the Atiny84 chip

The first thing I always do with a new chip is run a blink program to test the programmer and microcontroller. Than if you see a blinking light it works.
One problem I had with the attiny a lot was the arduino being programmed and not the attiny. Sometimes the code would be on the arduino and I'd have to reinstall the isp file.
Hope that helps, if not I'd need more details on your situation.

But that's not binary, it's BCD (Binary Coded Decimal)! Anyways, cool project!

Looking at your schematic I don't see how you could turn on LED4 and LED8 without LED7 inadvertently powering on as well. It shares the power of LED4 and the ground of LED8 and will turn on too. What am I missing? That's just one example. Thanks.
I have built a few clocks. First time with Arduino. I used the 5v off the board to power clock and the Arduino board shuts off. Must be a short in the clock PCB? Any Ideas?
Thanks
Frank
Does the power light slowly turn off? Could be bad resistor, transistor, or LED. So test each of them individuality.
If plugged into the computer does it tell you the arduino is unplugged as soon as it is plugged in? Probably a short. Check with Ohm meter.
Hi sbbrain
I tested all the resistors and found R1 and R2 bad. I replaced them and now the Arduino does not shut down when I plug in the clock board. I tested all the LEDs and found them all ok. I have 5v at all the switch pins. No voltage at the LEDs or transistors. on the ATtiny I have 5v on pins 1,4,10,11 on the 74HC I have 5v on pin 9, 4v on pin 14 and 2.2v on pin 8
I used ExpressPCB to make the PCB. From your schmatic i connected all GNDs to chassis ground and all the Vcc to 5v power from the Arduino board. On your schematic at pin 9 Vcc on 74HC there is a circle. Not sure what that means. I have 5v on all the switch pins

Thanks for the help
Frank
Hi sbbrain
Hey thanks for the reply. The 'L' and 'ON' LEDs are on but when I plug the clock circuit in they waver and turn off and remain off until I disconnect the clock. I will check each resistor. I will check the clock circuit with an Ohm meter.
I downloaded your code to the ATtiny with no problems. I will let you know the outcome.
Frank
Multiplexing. The idea is to only allow one column to be grounded at a time.
So there are 6 columns and only one of them turns on at a time while the 4 anodes layers are turned on or off. Make Sense?
More Comments