Arduino Real Time C...
 
Notifications
Clear all

Arduino Real Time Clock - Using the Tiny RTC

11 Posts
9 Users
2 Likes
2,810 Views
(@dronebot-workshop)
Workshop Guru Admin
Joined: 5 years ago
Posts: 1081
Topic starter  

Today we will add a Real-Time Clock to an Arduino. I’ll show you how the Tiny RTC is hooked up and how to use two ways, including with interrupts. We will also construct a temperature and humidity clock.

Full article at https://dbws/tinyrtc

The Arduino is a very versatile platform with many features, however, one thing it cannot do is tell the time. In order to do that you will need a real-time clock module.

A real-time clock is essentially a digital clock that you can interface with a computer or microcontroller. The module we are going to use is the popular Tiny RTC, which interfaces with the Arduino using the I2C bus.

The Tiny RTC is based upon the DS1307 real-time clock chip. This chip provides readings of the second, minute, hour, day, day of the week, month, and year. It adjusts for leap years and has a battery backup. And its available from several sources and it is very inexpensive.

I’ll show you how to hook up the Tiny RTC and how to set and read the time. We will then look at a more advanced method of using the Tiny RTC, using interrupts.

Here is the Table of Contents for today's video:

00:00 - Introduction
02:19 - Tiny RTC Module
05:15 - Hooking it up
06:03 - Setting the Time
09:43 - Reading the Time
12:30 - Creating Interrupts
19:58 - RTC with Temperature and Humidity

As always there is an article on the DroneBot Workshop website with all of the code you’ll need to duplicate these experiments. You’ll find it at https://dbws/tinyrtc

"Never trust a computer you can’t throw out a window." — Steve Wozniak


   
YurkshireLad reacted
Quote
(@davidmcsweeney)
Member
Joined: 3 years ago
Posts: 34
 

@dronebot-workshop

Hi Bill and others,

I've purchased a Tiny RTC and successfully ran the first two functions (Set and Read Time).

I came across a problem with the Square Wave interrupt demonstration. The LED blinks only once, not continuously as in the tutorial. I've followed the instructions exactly so not sure what to do. One thing I noticed that might be an indicator is that the SQ pin on the module is directly connected to the GND pin (checked with my DVM). Not sure if this is meant to be the case or not.

This is important to me as I would like to use this approach in my Water Distillation project with a temp/humidity/pressure sensor.

Cheers,

David


   
ReplyQuote
Centari
(@centari)
Member
Joined: 4 years ago
Posts: 44
 

@davidmcsweeney, I don't have the module yet,(it's on my list) but the datasheet shows a typical circuit which does not have the SQ connection going to ground.

image

   
ReplyQuote
(@davidmcsweeney)
Member
Joined: 3 years ago
Posts: 34
 

@centari

Thanks Centari. I thought as much. I'm taking it up with the supplier now.


   
Centari reacted
ReplyQuote
(@yurkshirelad)
Member
Joined: 3 years ago
Posts: 493
 

Fantastic! I was just thinking about RTC with Arduino over the weekend. Definitely a must watch for me. Thanks Bill.


   
ReplyQuote
noweare
(@noweare)
Member
Joined: 4 years ago
Posts: 119
 

I had a lot of trouble understanding the Wire library and how it worked.  I found that the functions did not correspond to how the reference manual described how TWI worked. I ended up using the low level files twi.h and twi.c that the wire library uses but even then I had use my logic analyzer to figure out how to use the functions before I could talk to the RTC.

When I first started using avr chips I found a i2c library written by Peter Fleury and it is written in C.

The functions closely follow the reference manual as far as using functions like start, repeated start, stop and adding acknowledge. Anyways I learned how to talk to any device with using Peter Fleurys library.

I guess the reason I am posting is that the TinyRTC is a simple i2c device with only about 9 registers to talk to. I like to know how things work and using a RTC library on top of the Wire library seems to make understanding how a simple i2c device work confusing.

 

 


   
ReplyQuote
(@magic-smoke)
Member
Joined: 3 years ago
Posts: 10
 

I struggled with this at first before I realised there seems to be two main chips used in RTCs, the DS1307 and the DS3231 (the video was relevant to the DS1307). Perhaps naively I purchased a DS3231, before realising. When I got a "tiny RTC" with a DS1307 all worked well (thanks to the Dronebotworkshop YouTube video). Since I have a DS3231-type RTC I persisted with it but I'm finding it hard to fathom and get working properly.

The Arduino website points to the DS3231 library but I couldn't get this to work with the example sketches provided. I then found another library by searching the Arduino IDE called ds3231FS, which does work with the provided example sketches - although they are tricky to figure out.  Confusingly, both libraries are represented by #include <ds3231.h> in the code.

I thought I'd share the experience - even though I'm not that experienced with Arduino.  Others with greater knowledge might be able to steer me in a better direction?

 

 

This post was modified 3 years ago by Magic Smoke

   
ReplyQuote
Will
 Will
(@will)
Member
Joined: 3 years ago
Posts: 2531
 

@magic-smoke 

Find something that works and stick with it.

Anything seems possible when you don't know what you're talking about.


   
ReplyQuote
(@magic-smoke)
Member
Joined: 3 years ago
Posts: 10
 

I think those are wise words.


   
ReplyQuote
(@ronft)
Member
Joined: 3 years ago
Posts: 7
 

@davidmcsweeney 

I just tried the sketch, same problem with the square wave and interrupt. I gave up and wrote a millis code to basically do the same as the interrupt. But I would like to use the 1Hz output, or maybe one of the 3 other outputs.


   
ReplyQuote
ron bentley
(@ronbentley1)
Member
Joined: 2 years ago
Posts: 385
 

@dronebot-workshop

Just viewed the video and very much enjoyed it. As usual, clear, concise and very informative. I can see why many new members of the Forum come to it from the video library.

I have used RTCs and temp/humidity sensors in the past with good success, but these modules seem to be more straight forward to configure with the suggested libraries; and the ability to set the Tiny RTC to the date/time of a connected pc is a great bonus!

My only observation/comment is that the sketches reference the attachInterrupt function with an interrupt pin number of 0, which is actually UNO/MEGA pin 2.

A more general and MCU independent reference would be:   attachInterrupt(digitalPinToInterrupt(2),...);

Thanks

Ron B

Ron Bentley
Creativity is an input to innovation and change is the output from innovation. Braden Kelley
A computer is a machine for constructing mappings from input to output. Michael Kirby
Through great input you get great output. RZA
Gauss is great but Euler rocks!!


   
ReplyQuote