Ks0039 keyestudio DS3231 Clock Module: Difference between revisions
Keyestudio (talk | contribs) No edit summary |
Keyestudio (talk | contribs) |
||
Line 37: | Line 37: | ||
//writing any non-existent time-data may interfere with normal operation of the RTC. | //writing any non-existent time-data may interfere with normal operation of the RTC. | ||
//Take care of week-day also. | //Take care of week-day also. | ||
DateTime dt(2011, 11, 10, 15, 18, 0, 5);//open the | DateTime dt(2011, 11, 10, 15, 18, 0, 5);//open the serial port and you can check time here or make a change to the time as needed. | ||
void setup () | void setup () | ||
{ Serial.begin(57600);//set baud rate to 57600 | { Serial.begin(57600);//set baud rate to 57600 | ||
Line 65: | Line 65: | ||
}</pre> | }</pre> | ||
Before compiling the code, you’d better put [https://github.com/rodan/ds3231 DS3231 library] under file into Arduino catalogue | Before compiling the code, you’d better put [https://github.com/rodan/ds3231 DS3231 library] under file into Arduino catalogue. When the above steps are done, you can upload the code to arduino and open the serial monitor and get the following results: | ||
<br>[[File:393.png|500px|frameless|thumb]]<br> | <br>[[File:393.png|500px|frameless|thumb]]<br> | ||
==Resources == | ==Resources == |
Revision as of 14:08, 26 September 2017
Introduction
DS3231 is equipped with integrated TCXO and crystal, which makes it a cost-effective I2C real time clock with high precision. The device carries a battery input, so if you disconnect the main power supply, it can still maintain accurate timing. The integrated oscillator ensures the long-term accuracy of the device and reduces the number of components. DS3231 provides both commercial and industrial temperature range and supports 16 pins small-outline package (300mil). The module itself can adapt to the system of 3.3V and 5V without level switch, which is quite convenient!
Specification
- Temperature Range: -40 to +85
- Timing Accuracy : ± 5ppm (±0.432 seconds / day)
- Provide battery backup for continuous timing
- Low power consumption
- Device package and function compatible with DS3231
- Complete clock calendar function contains seconds and minutes, hour, week, date, month, and year timing and provides leap year compensation until 2100.
- Two calendar clock
- Output: 1Hz and 32.768kHz
- Reset output and Input Debounce of Pushbutton
- High speed (400kHz), I2C serial bus
- Supply Voltage: +3.3V to +5.5V
- Digital temperature sensor with a precision of±3℃
- Working Temperature: -40 ~ C to +85 ~ C
- 16 Pins Small Outline Package (300mil)
- Certified by American Association of Underwriters Laboratories (UL)
- Size: 30*20mm
- Weight: 4g
Connection Diagram
This module adopts the IIC test method, so we only need to connect ‘SDA’ to Arduino A4, ‘SCL’ to A5, ‘+’ to VCC and ‘-’ to GND as follows:
Sample Code
#include <Wire.h> #include "DS3231.h" DS3231 RTC; //Create the DS3231 object char weekDay[][4] = {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" }; //year, month, date, hour, min, sec and week-day(starts from 0 and goes to 6) //writing any non-existent time-data may interfere with normal operation of the RTC. //Take care of week-day also. DateTime dt(2011, 11, 10, 15, 18, 0, 5);//open the serial port and you can check time here or make a change to the time as needed. void setup () { Serial.begin(57600);//set baud rate to 57600 Wire.begin(); RTC.begin(); RTC.adjust(dt); //Adjust date-time as defined 'dt' above } void loop () { DateTime now = RTC.now(); //get the current date-time Serial.print(now.year(), DEC); Serial.print('/'); Serial.print(now.month(), DEC); Serial.print('/'); Serial.print(now.date(), DEC); Serial.print(' '); Serial.print(now.hour(), DEC); Serial.print(':'); Serial.print(now.minute(), DEC); Serial.print(':'); Serial.print(now.second(), DEC); Serial.println(); Serial.print(weekDay[now.dayOfWeek()]); Serial.println(); delay(1000); }
Before compiling the code, you’d better put DS3231 library under file into Arduino catalogue. When the above steps are done, you can upload the code to arduino and open the serial monitor and get the following results:
Resources
Video
http://www.keyestudio.com/wp/2016/05/ks0039-keyestudio-ds3231-clock-sensor/
Datasheet
http://www.keyestudio.com/files/index/download/id/1463651641/
Buy from
http://www.keyestudio.com/keyestudio-ds3231-clock-module-for-arduino.html