How to make a Digital Clock using DS1307 RTC with micro

Microcontroller Topics
Post Reply
User avatar
Shehani
Lieutenant
Lieutenant
Posts: 61
Joined: Mon Aug 19, 2013 2:11 pm

How to make a Digital Clock using DS1307 RTC with micro

Post by Shehani » Mon Sep 23, 2013 9:55 am

Digital Clock using PIC Microcontroller
Digital Clock using PIC Microcontroller
1.jpg (316.71 KiB) Viewed 3527 times
A Digital Clock can be made easily by using PIC Microcontroller, DS1307 and a 16×2 LCD. The DS1307 RTC can work either in 24-hour mode or 12-hour mode with AM/PM indicator. It automatically adjusts for months fewer than 31 days including leap year compensation up to year 2100. DS1307 comes with built-in power sensing circuit which senses power failures and automatically switches to back up supply. We can provide a 3V CMOS Battery for that. Communication between PIC Microcontroller and DS1307 takes place through I²C Bus.

Circuit Diagram – Digital Clock
Digital Clock using PIC Microcontroller and DS1307 RTC – Circuit Diagram
Digital Clock using PIC Microcontroller and DS1307 RTC – Circuit Diagram
2.jpg (65.11 KiB) Viewed 3527 times
Note: VDD , VSS of the Pic Microcontroller and VCC , GND of DS1307 are not shown in the circuit diagram. VDD, VCC should be connected to +5V and VSS, GND to OV as marked in the circuit diagram.

To simulate this project in Proteus you may need to connect I2C Debugger. SCL and SDA of I2C Debugger should be connected in parallel to SCL and SDA of DS1307. I2C Debugger can be found where CRO can be found in Proteus.

You can download the MikroC Source Code and Proteus Files etc at the end of this article. Here I explains the Source Code and different functions used in it.

The Three points to be noted while editing or creating program for this project:

- DS1307 RTC is fully Binary Coded Decimal (BCD) clock/calender. So the data read from DS1307 should be converted to required format according to our needs and data to be written to DS1307 should be in BCD format.
- Library for Interfacing LCD With PIC Microcontroller of MikroC needs Character or String Data. So data to be displayed in the LCD Screen should be converted to Character.
- Addition and Subtraction cannot be directly applied on BCD. Here I first convert BCD to Binary. Then addition and subtraction can be simply applied on Binary. Then the Binary is converted back to BCD.

BCD2UpperCh() and BCD2LowerCh() are the two functions used to convert BCD to Character. Hour, Minute, Second, Date, Month and Year data are stored in DS1307 in separate 8-bit registers in BCD format. We read the data of these registers to access time/date. BCD2UpperCh() converts most significant 4 bits to corresponding character and BCD2LowerCh() converts least significant 4 bits to corresponding character.

The BCD2Binary() converts the BCD data read from the RTC to corresponding Binary for addition or subtraction and Binary2BCD converts the Binary back to BCD.

Bit 6 of Hour register is defined as the 24-hour or 12-hour mode selection bit. When this bit is made high, 12-hour mode is selected and Bit 5 will represent AM/PM (Logic High represents PM).


Article courtesy of electrosome.com
User avatar
uthman77
Posts: 1
Joined: Wed Oct 09, 2013 2:48 am

Re: How to make a Digital Clock using DS1307 RTC with micro

Post by uthman77 » Wed Oct 09, 2013 2:58 am

PLEASE CAN I HAVE THE HEX FILE, SCHEMATIC AND CODE OF THIS PROJECT?
Post Reply

Return to “Microcontrollers”