-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathErriezDS3231AgingOffset.ino
119 lines (98 loc) · 2.94 KB
/
ErriezDS3231AgingOffset.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*
* MIT License
*
* Copyright (c) 2020 Erriez
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
/*!
* \brief DS3231 high accurate RTC aging offset example for Arduino
* \details
* Source: https://github.com/Erriez/ErriezDS3231
* Documentation: https://erriez.github.io/ErriezDS3231
*/
#include <Wire.h>
#include <ErriezDS3231.h>
// Set 8-bit signed aging offset value -127...127 for clock speed compensation 0.1ppm per LSB
#define AGING_OFFSET_VALUE 10
// Create DS3231 RTC object
ErriezDS3231 ds3231;
void setAgingOffset()
{
Serial.print(F("Set aging offset: "));
Serial.println(AGING_OFFSET_VALUE, DEC);
// Set aging offset
ds3231.setAgingOffset(AGING_OFFSET_VALUE);
}
void printAgingOffset()
{
int8_t agingOffset;
// Get aging offset
agingOffset = ds3231.getAgingOffset();
Serial.print(F("Aging offset: "));
Serial.println(agingOffset, DEC);
}
void setup()
{
// Initialize serial port
delay(500);
Serial.begin(115200);
while (!Serial) {
;
}
Serial.println(F("\nErriez DS3231 RTC aging offset example\n"));
// Initialize TWI
Wire.begin();
Wire.setClock(400000);
// Initialize RTC
while (!ds3231.begin()) {
Serial.println(F("RTC not found"));
delay(3000);
}
// Set aging offset
setAgingOffset();
// Print aging offset register
printAgingOffset();
// Enable oscillator
ds3231.clockEnable(true);
}
void loop()
{
struct tm dt;
// Get date time from RTC
if (!ds3231.read(&dt)) {
Serial.println(F("RTC read failed"));
delay(3000);
return;
}
// Print time
Serial.print(dt.tm_hour);
Serial.print(F(":"));
if (dt.tm_min < 10) {
Serial.print(F("0"));
}
Serial.print(dt.tm_min);
Serial.print(F(":"));
if (dt.tm_sec < 10) {
Serial.print(F("0"));
}
Serial.println(dt.tm_sec);
// Wait
delay(1000);
}