PCB Binary Watch

by taifur in Circuits > Wearables

12554 Views, 110 Favorites, 0 Comments

PCB Binary Watch

IMG-1191.jpg
IMG-1196.jpg
IMG-1170.jpg
bn2.png
IMG-1191.jpg
full-clock.jpg
bn3.png
bn222.png
PCB Binary Watch

I love PCB. I love Binary. A few years ago when I was browsing the Instructables one project attracted me very much. The project was a PCB watch named The Nerd Watch. When I saw that I fall in love with the watch. I tried to make one but I didn't have all the tools to make the watch. After that several more PCB and Binary watches were made by community members and published in Instructables. Those watches are really excellent and mind-blowing. A few of them are:

Binary Wrist Watch

MechWatch - a Custom Digital Watch

The Ultimate Binary Watch

Taking inspiration from all of the watches above finally I made my own PCB Binary Watch which was my dream for many days.

I focused on the aesthetic of the PCB as I am going to keep it open from any type of casing. Intentionally I kept the trace of the top PCB layer free from solder musk so that all the track can be visualized clearly. That gives a better look. For preventing the tracks from corrosion I used Gold Finish on the top surface. I also placed all resistors and capacitors on the bottom side of the PCB.

After finishing I was surprised by the looking of the watch. It really looks great. This can be a perfect watch for electrical and computer engineers. If you are an engineer and like binary I am pretty sure you will like it.

This is going to be a perfect engineer's watch!!!

Supplies

components.jpg
H690875c59993472388bb2306e67f3865l.jpg
H473950174ffb4212b92017748de297c5w.jpg
Strapcode-Watch-Bands-NATO18FR-P-1_1200x.jpg

Required Hardware Components for the Watch:

  1. ATMEGA-328P SMD Microcontroller (buy from aliexpress.com)
  2. DS3231M SOP-8 RTC (buy from aliexpress.com)
  3. 13pcs 1206 SMD LED of your preferred color (buy from aliexpress.com)
  4. 1pc 4x4x1.5mm SMD Button Switch (buy from aliexpress.com)
  5. 4pcs 100 ohm 1206 SMD Resistor (buy from aliexpress.com)
  6. 2pcs 4.7K 1206 SMD Resistor (buy from aliexpress.com)
  7. 1pc 10K 1206 SMD Resistor (buy from aliexpress.com)
  8. 1pc 1nF 1206 SMD Capacitor (buy from aliexpress.com)
  9. 1pc CR2032 Coin Cell Battery Holder (buy from aliexpress.com)
  10. 1pc CR2032 Coin Cell Battery (buy from aliexpress.com)
  11. Watch Strap Band (buy from aliexpress.com)
  12. Watch PCB
  13. PCB Stencil


Hardware Tools Required to Make the Watch:

  1. TQFP32 QFP32 TO DIP32 IC Programmer Adapter (buy from aliexpress.com)
  2. SOP8 to DIP8 IC Adapter (Optional) (buy from aliexpress.com)
  3. Breadboard (buy from aliexpress.com)
  4. Jumper Wires (Male to Male) (buy from aliexpress.com)
  5. Solder Paste (buy from aliexpress.com)
  6. SMD Reflow Oven or Reflow Station (buy from aliexpress.com) or made one by yourself.


Software Tools Required:

  1. Fusion 360 or EasyEDA CAD tool
  2. Arduino IDE


Online Service I Used:

  1. JLC PCB Service

Making First Prototype

IMG_1085.JPG
binary-led.jpg
IMG_1083.JPG

Before making the final PCB of any electronic product, it is very important to make a breadboard version of the product. This breadboard version will give you the information whether your final product is going to work perfectly or not. Most of the cases what we think theoretically may not work expectedly in the practical circuit. A Breadboard circuit is also helpful for developing the firmware of the circuit.

Before making this project I never used DS3231M SOP-8 RTC. I was not sure whether other RTC libraries like DS3231 will work or not with the SOP-8 package though it should work theoretically. So, it was very important for me to test my DS3231M with a standard RTC library before making the final circuit.

I had also another confusion about the TQFN package of the ATMEGA328P microcontroller. As I am going to design a wearable product and the device will be powered by a coin cell battery (CR2032) power consumption is a crucial factor of the project. Besides, for the aesthetic outlook, I was trying to keep the circuit as simple as possible to minimize the components and PCB traces. So, I had the intention to use the internal oscillator of the microcontroller without using an external one. For using an internal oscillator you need to change the default bootloader of the Arduino. So, I wanted to find which bootloader is going to serve my purpose. For all the above reasons I made a breadboard prototype before making the final PCB.

SMD ICs are not breadboard friendly. I used an SMD32 to DIP32 PCB board to place the SMD microcontroller on my breadboard. For the SOP-8 RTC I used SOP-8 to DIP-8 adapter. For displaying the binary time I used 13 LEDs and for developing and testing the firmware I made a LED display on the perf board.

For using the internal 8MHz oscillator I included the MCUdude board manager in the Arduino. The GitHub link of the board manager is: https://github.com/MCUdude/MiniCore. This board works for me without any problem.

For DS3231M SOP-8 RTC I used the following library. Link: https://github.com/Zanduino/DS3231M

Power saving is one of the most important factors for a wearable device. I used a CR2032 coin cell battery for my project. This coin cell has around 200mAh capacity. So, we should utilize this battery very efficiently. I utilized the deep sleep functionality of Arduino and the device shows the time for only 10 seconds on every button press. Then it goes to deep sleep again to save the power. The button is connected to the external interrupt pin of the Atmega328P microcontroller.

You can download the low-power library from the link: https://github.com/rocketscream/Low-Power

The full Arduino sketch for the watch is as follows:

/*
Md. Khairul Alam
Arduino PCB Binary Clock
Date: 1 January, 2023
*/

#include <DS3231M.h>  
#include "LowPower.h"


DS3231M_Class DS3231M; 


const int wake_up_pin = 2;


const int min_one = 6;
const int min_ten = 5;
const int hour_one = 4;
const int hour_ten = 3;


const int min_one_pos_one = 10;
const int min_one_pos_two = 9;
const int min_one_pos_four = 8;
const int min_one_pos_eight = 7;


const int min_ten_pos_one = 9;
const int min_ten_pos_two = 8;
const int min_ten_pos_four = 7;


const int hour_one_pos_one = 10;
const int hour_one_pos_two = 9;
const int hour_one_pos_four = 8;
const int hour_one_pos_eight = 7;


const int hour_ten_pos_one = 8;
const int hour_ten_pos_two = 7;


void wake_up()
{
   
}


void setup() {
  // put your setup code here, to run once:
  //DateTime(F(__DATE__), F(__TIME__))
  pinMode(min_one, OUTPUT);
  pinMode(min_ten, OUTPUT);
  pinMode(hour_one, OUTPUT);
  pinMode(hour_ten, OUTPUT);
  pinMode(10, OUTPUT);
  pinMode(9, OUTPUT);
  pinMode(8, OUTPUT);
  pinMode(7, OUTPUT);
  pinMode(wake_up_pin, INPUT_PULLUP); 
  
  Serial.begin(9600);
  while (!DS3231M.begin())  // Initialize RTC communications
  {
    Serial.println("Not found");
    delay(1000);
  }
  DS3231M.adjust(DateTime(2022, 12, 30, 12, 0, 0));  // Set to specific Date/Time  
}


int hour_o = 0;
int hour_t = 0;
int minute_o = 0;
int minute_t = 0;


void loop() {


  attachInterrupt(0, wake_up, LOW);
  LowPower.powerDown(SLEEP_FOREVER, ADC_OFF, BOD_OFF);


  // execution will start from here after wake up
  // Disable external pin interrupt on wake up pin.
  detachInterrupt(0);   
  delay(200);
  DateTime       now = DS3231M.now(); 
  int hour = now.hour();
  int minute = now.minute();


  hour_o = hour%10;
  hour_t = hour/10;


  minute_o = minute%10;
  minute_t = minute/10;


  long startTime = millis();
  while((millis() - startTime)<10000){  
    min_one_display(minute_o);
    delay(5);
    min_ten_display(minute_t);
    delay(5);
    hour_one_display(hour_o);
    delay(5);
    hour_ten_display(hour_t);
    delay(5);
  }
  digitalWrite(min_one, LOW);
  digitalWrite(min_ten, LOW);
  digitalWrite(hour_one, LOW);
  digitalWrite(hour_ten, LOW);
}


void min_one_display(int min_one_value){
  digitalWrite(min_one, HIGH);
  digitalWrite(min_ten, LOW);
  digitalWrite(hour_one, LOW);
  digitalWrite(hour_ten, LOW);
  switch(min_one_value){
    case 0:
      digitalWrite(min_one_pos_one, HIGH);
      digitalWrite(min_one_pos_two, HIGH);
      digitalWrite(min_one_pos_four, HIGH);
      digitalWrite(min_one_pos_eight, HIGH);
      break;


    case 1:
      digitalWrite(min_one_pos_one, LOW);
      digitalWrite(min_one_pos_two, HIGH);
      digitalWrite(min_one_pos_four, HIGH);
      digitalWrite(min_one_pos_eight, HIGH);
      break;


    case 2:
      digitalWrite(min_one_pos_one, HIGH);
      digitalWrite(min_one_pos_two, LOW);
      digitalWrite(min_one_pos_four, HIGH);
      digitalWrite(min_one_pos_eight, HIGH);
      break;


    case 3:
      digitalWrite(min_one_pos_one, LOW);
      digitalWrite(min_one_pos_two, LOW);
      digitalWrite(min_one_pos_four, HIGH);
      digitalWrite(min_one_pos_eight, HIGH);
      break;


    case 4:
      digitalWrite(min_one_pos_one, HIGH);
      digitalWrite(min_one_pos_two, HIGH);
      digitalWrite(min_one_pos_four, LOW);
      digitalWrite(min_one_pos_eight, HIGH);
      break;


    case 5:
      digitalWrite(min_one_pos_one, LOW);
      digitalWrite(min_one_pos_two, HIGH);
      digitalWrite(min_one_pos_four, LOW);
      digitalWrite(min_one_pos_eight, HIGH);
      break;


    case 6:
      digitalWrite(min_one_pos_one, HIGH);
      digitalWrite(min_one_pos_two, LOW);
      digitalWrite(min_one_pos_four, LOW);
      digitalWrite(min_one_pos_eight, HIGH);
      break;


    case 7:
      digitalWrite(min_one_pos_one, LOW);
      digitalWrite(min_one_pos_two, LOW);
      digitalWrite(min_one_pos_four, LOW);
      digitalWrite(min_one_pos_eight, HIGH);
      break;


    case 8:
      digitalWrite(min_one_pos_one, HIGH);
      digitalWrite(min_one_pos_two, HIGH);
      digitalWrite(min_one_pos_four, HIGH);
      digitalWrite(min_one_pos_eight, LOW);
      break;


    case 9:
      digitalWrite(min_one_pos_one, LOW);
      digitalWrite(min_one_pos_two, HIGH);
      digitalWrite(min_one_pos_four, HIGH);
      digitalWrite(min_one_pos_eight, LOW);
      break;
   }
}


void hour_one_display(int hour_one_value){
  digitalWrite(min_one, LOW);
  digitalWrite(min_ten, LOW);
  digitalWrite(hour_one, HIGH);
  digitalWrite(hour_ten, LOW);
  switch(hour_one_value){
    case 0:
      digitalWrite(hour_one_pos_one, HIGH);
      digitalWrite(hour_one_pos_two, HIGH);
      digitalWrite(hour_one_pos_four, HIGH);
      digitalWrite(hour_one_pos_eight, HIGH);
      break;


    case 1:
      digitalWrite(hour_one_pos_one, LOW);
      digitalWrite(hour_one_pos_two, HIGH);
      digitalWrite(hour_one_pos_four, HIGH);
      digitalWrite(hour_one_pos_eight, HIGH);
      break;


    case 2:
      digitalWrite(hour_one_pos_one, HIGH);
      digitalWrite(hour_one_pos_two, LOW);
      digitalWrite(hour_one_pos_four, HIGH);
      digitalWrite(hour_one_pos_eight, HIGH);
      break;


    case 3:
      digitalWrite(hour_one_pos_one, LOW);
      digitalWrite(hour_one_pos_two, LOW);
      digitalWrite(hour_one_pos_four, HIGH);
      digitalWrite(hour_one_pos_eight, HIGH);
      break;


    case 4:
      digitalWrite(hour_one_pos_one, HIGH);
      digitalWrite(hour_one_pos_two, HIGH);
      digitalWrite(hour_one_pos_four, LOW);
      digitalWrite(hour_one_pos_eight, HIGH);
      break;


    case 5:
      digitalWrite(hour_one_pos_one, LOW);
      digitalWrite(hour_one_pos_two, HIGH);
      digitalWrite(hour_one_pos_four, LOW);
      digitalWrite(hour_one_pos_eight, HIGH);
      break;


    case 6:
      digitalWrite(hour_one_pos_one, HIGH);
      digitalWrite(hour_one_pos_two, LOW);
      digitalWrite(hour_one_pos_four, LOW);
      digitalWrite(hour_one_pos_eight, HIGH);
      break;


    case 7:
      digitalWrite(hour_one_pos_one, LOW);
      digitalWrite(hour_one_pos_two, LOW);
      digitalWrite(hour_one_pos_four, LOW);
      digitalWrite(hour_one_pos_eight, HIGH);
      break;


    case 8:
      digitalWrite(hour_one_pos_one, HIGH);
      digitalWrite(hour_one_pos_two, HIGH);
      digitalWrite(hour_one_pos_four, HIGH);
      digitalWrite(hour_one_pos_eight, LOW);
      break;


    case 9:
      digitalWrite(hour_one_pos_one, LOW);
      digitalWrite(hour_one_pos_two, HIGH);
      digitalWrite(hour_one_pos_four, HIGH);
      digitalWrite(hour_one_pos_eight, LOW);
      break;
   }
}


void min_ten_display(int min_ten_value){
  digitalWrite(min_one, LOW);
  digitalWrite(min_ten, HIGH);
  digitalWrite(hour_one, LOW);
  digitalWrite(hour_ten, LOW);
  switch(min_ten_value){
    case 0:
      digitalWrite(min_ten_pos_one, HIGH);
      digitalWrite(min_ten_pos_two, HIGH);
      digitalWrite(min_ten_pos_four, HIGH);
      break;


    case 1:
      digitalWrite(min_ten_pos_one, LOW);
      digitalWrite(min_ten_pos_two, HIGH);
      digitalWrite(min_ten_pos_four, HIGH);
      break;


    case 2:
      digitalWrite(min_ten_pos_one, HIGH);
      digitalWrite(min_ten_pos_two, LOW);
      digitalWrite(min_ten_pos_four, HIGH);
      break;


    case 3:
      digitalWrite(min_ten_pos_one, LOW);
      digitalWrite(min_ten_pos_two, LOW);
      digitalWrite(min_ten_pos_four, HIGH);
      break;


    case 4:
      digitalWrite(min_ten_pos_one, HIGH);
      digitalWrite(min_ten_pos_two, HIGH);
      digitalWrite(min_ten_pos_four, LOW);
      break;


    case 5:
      digitalWrite(min_ten_pos_one, LOW);
      digitalWrite(min_ten_pos_two, HIGH);
      digitalWrite(min_ten_pos_four, LOW);
      break;


   }
}


void hour_ten_display(int hour_ten_value){
  digitalWrite(min_one, LOW);
  digitalWrite(min_ten, LOW);
  digitalWrite(hour_one, LOW);
  digitalWrite(hour_ten, HIGH);
  switch(hour_ten_value){
    case 0:
      digitalWrite(hour_ten_pos_one, HIGH);
      digitalWrite(hour_ten_pos_two, HIGH);
      break;


    case 1:
      digitalWrite(hour_ten_pos_one, LOW);
      digitalWrite(hour_ten_pos_two, HIGH);
      break;


    case 2:
      digitalWrite(hour_ten_pos_one, HIGH);
      digitalWrite(hour_ten_pos_two, LOW);
      break;


   }
}

Designing Schematic & PCB

Schematic_PCB Binary Watch Battery v3_2023-01-13.png
PCB_PCB_PCB Binary Watch Battery copy copy_2023-01-13 (1).png
pcb-2d.png
pcb-3d.png
pcb-3db.png
Schematic_PCB Binary Watch Battery v4_2023-01-21.png
PCB Binary Watch Design

The Schematic

After successfully testing the prototype it is the right time to develop the schematic for the PCB. I generally used EasyEDA for PCB design because I easily find all the components required for my design and it has a rich set of the user-contributed library. The design work is also easy in EasyEDA. You can directly order the PCB from EasyEDA.

The circuit for the watch is very simple. A DS3231 is connected to the Atmega328P microcontroller using an I2C port. Two pull-up resistors are added to SCL and SDA lines. A 1nF capacitor is connected between the BAT and VCC line of the RTC as per the recommendation of the datasheet. A 10K resistor is connected to the VCC and the RESET line of the microcontroller. LEDs are connected in matrix form to save the pin of the microcontroller. Each common cathode is connected through a 100-ohm resistor. The size of the resistors and capacitors is 1206 as I am going to solder all the components by hand. Smaller components than 1206 are not suitable for manual soldering, especially for amateurs.


The PCB

While designing the PCB I tried to make the top layer aesthetically nice and for this purpose, I placed all the resistors and capacitors on the bottom layer. The MCU is placed at the upper side of the top layer and the button and RTC are at the lower side of the top layer. LEDs are placed in the middle of the PCB.

To bring a tech look to the PCB I have drawn the top traces very carefully. I want to use this watch without any casing or covering. That will give a more tech feeling while using the watch. To make the PCB traces more visible I kept the traces free from the solder mask. But without a solder mask, the traces will be affected by corrosion and oxidation. To protect the traces from corrosion I used a Gold Finish (ENIG) on the PCB. Of course, the ENIG finish is much more expensive than the traditional HASL finish but definitely it will give a more elegant look to the PCB.  


Watch the Video above for a better understanding.   

Sending Design for PCB Manufacturing

pcb-ord2.jpg
pcb-ord.jpg
IMG_1155.JPG
IMG_1156.JPG
jlcpcb.png
How to order in JLCPCB?

After finishing the layout design it needs to be manufactured. JLCPCB provides excellent PCB manufacturing services for hobbyists and professionals. I always use JLC PCB for my personal PCB-related project because they provide good quality PCB at an affordable price. The delivery is also fast.


Ordering PCB in JLCPCB is very easy. You can directly order from the EasyEDA platform or you can order by downloading the Gerber file from EasyEDA with just a single click. You can choose your favorite PCB color from plenty of options.

I ordered black colored PCB with Gold (ENIG) finish. Don't forget to order a stencil with the PCB. It is very important for adding the right amount of solder paste to the PCB and you will get a professional solder joint and a professional look.

Placing the Components

IMG_1088.JPG
allign.jpg
solder-pasting.jpg

The outlook of the watch face is very important and you will not get good finishing if you solder SMD components using a soldering iron. Hot air is a better option but components alignment may be hampered by the air flow. The best way is to use a reflow oven or reflow hot plate. Either you use a hot air gun or a reflow oven in both cases first you need to apply solder paste before placing the components. The best way to apply the right amount of solder paste is to use PCB stencil which you may order with the PCB. For applying solder paste the stencil must be perfectly aligned with the pads of the PCB. You may use adhesive tape to temporarily fix the stencil with the PCB after successfully aligning with the pads. Then you may use a credit card or something like it to apply the paste on the PCB.

After applying the solder paste and removing the stencil you need to place the components by using a tweezer. The final outlook will be as nice as perfectly you can place the components. So be careful and patient while placing the components.

Soldering With Reflow Hot Plate

IMG-1178.jpg
reflow.jpg
reflow-soldering.png
IMG-1179.jpg
SMD Soldering with Reflow Hot Plate

As I already said the perfect SMD soldering can be performed only with a reflow oven or reflow hot plate. You can buy a reflow oven from aliexpress.com or amazon.com or you can make a reflow oven from a toaster oven.

Similarly, you can buy a reflow hot plate from aliexpress.com or you can make one by yourself. I made a reflow plate by myself and I used that reflow hot plate for soldering my watch PCB. Some good instructables on the topic are:

  1. https://www.instructables.com/PCB-Hotplate-Mini-Edition
  2. https://www.instructables.com/Tims-Hot-Plate

This is a guide on soldering reflow profiles you should know if you like to make one by yourself.

Watch my reflow video on the soldering of my PCB using my self-made reflow plate.

I am surprisingly happy by getting the excellent result from my reflow plate.

My watch PCB is a two-layer PCB. But soldering both the top and bottom layers using a reflow hot plate is not possible. So, I used a soldering iron to solder the bottom components.

Watch the Reflow Video attached at the beginning of the section.

The Finished Watch

full-clock.jpg
IMG-1180.jpg
IMG_1101.JPG
IMG-1181.jpg
IMG-1182.jpg
FY5SR64K9D1XSHQ.jpg
bn222p.png
IMG_1114.JPG
IMG-1191.jpg

After completing all the steps above your watch is now completed. You can attach a watch strap and wear the watch. I used a NANO strap for my watch because it is very easy to attach to the watch and looks nice.


How to see the time:

For saving power the device spends most of the time in sleep mode. To see the time just press the button once, immediately it will display the time in binary form for 10 seconds. Then it will go to sleep mode again.


How to read the time:

Reading time is easy for engineers. The binary watch would operate just like a regular watch except that the interface would be binary, specifically, BCD (Binary Coded Decimal). BCD is a type of binary encoding where each decimal digit is represented by a fixed number of bits. I need 4 bits to be able to represent a digit from 0-9. And for a standard hh:mm time format, I need 4 of those digits. This means that I need a total of 16 bits which will be represented by 16 LEDs.

Reading the time in BCD is pretty easy once you get used to it. The row at the bottom of the watch represents the least significant bit (1) and the row at the top is the most significant bit (8). Each column represents a digit in the hh:mm time format. If an LED is ON, you count that value. If an LED is OFF, you ignore it.

To read the first digit simply sum all the activated LEDs corresponding values in the first (left most) column. Do the same for the other digits from left to right. You have now read the time in BCD!


Guess the time:


You are right! It is 1:39.


How to adjust the time:

There is no time adjustment button on the watch. You have to apply a single trick to set the time. The watch starts its time from 12 PM on power up or reset. So, when you need to replace the battery just insert the battery at exactly 12 PM. The time will start from 12 PM.

Alternatively, you can adjust the time by shorting Reset and Ground pads from the bottom side of the clock PCB.


How long it will survive with a single battery:

I don't have any calculations on power consumption, so it is tough for me to tell how long it will run with a single coin cell. But I am using this for more than a month with a single coin cell with an average of 5 presses per day.