amc2020:group_n:ds3231rtc
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
amc2020:group_n:ds3231rtc [2020/07/26 12:12] – [4.2 The Code Explained] jonas001 | amc2020:group_n:ds3231rtc [2023/01/05 14:38] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | < | ||
+ | < | ||
+ | <a href=" | ||
+ | <span style=" | ||
+ | ↩ Back to the main page | ||
+ | </ | ||
+ | </a> | ||
+ | </ | ||
+ | </ | ||
+ | |||
====== DS3231 Real Time Clock ====== | ====== DS3231 Real Time Clock ====== | ||
Line 86: | Line 96: | ||
There are a number of libraries available for the DS3231 RTC module, multiple of which were tested out. However, most of them are rather poorly documented, most have different features and some of them did not include the necessary function for the scope of the project. | There are a number of libraries available for the DS3231 RTC module, multiple of which were tested out. However, most of them are rather poorly documented, most have different features and some of them did not include the necessary function for the scope of the project. | ||
- | In the end, after being inspired by the approach of {{https:// | + | In the end, after being inspired by the approach of {{https:// |
The sketch by Ralph Bacon only included setting and reading the time from the module and printing the result to the serial monitor. Most of this was used with only minor changes in this sketch. The implementation of the interrupt and the setting and clearing of alarm 1 was done by me. | The sketch by Ralph Bacon only included setting and reading the time from the module and printing the result to the serial monitor. Most of this was used with only minor changes in this sketch. The implementation of the interrupt and the setting and clearing of alarm 1 was done by me. | ||
+ | |||
+ | <WRAP center round info 100%> | ||
+ | For anyone interested, I also made my own library for the DS3231 RTC module. The library allows setting and reading the time as well as using alarm 1 and 2 and also allows to read and change the status and control registers. There are also functions included for directly printing the time and the register settings to the serial monitor for an easy setup. | ||
+ | |||
+ | The library can be downloaded as a zip file from {{ : | ||
+ | |||
+ | To understand what is done by the functions, I recommend checking the cpp file in the library folder and the [[https:// | ||
+ | </ | ||
+ | |||
==== 4.1 The Code ==== | ==== 4.1 The Code ==== | ||
Line 247: | Line 266: | ||
Serial.print(Year); | Serial.print(Year); | ||
Serial.print(" | Serial.print(" | ||
- | switch(Day){ | + | switch(Day){ |
case 1: | case 1: | ||
Serial.println(" | Serial.println(" | ||
Line 405: | Line 424: | ||
</ol> | </ol> | ||
</ | </ | ||
+ | </ | ||
+ | |||
+ | ==== 4.3 Results ==== | ||
+ | |||
+ | When uploading the sketch to the Arduino after connecting it according to the setup, the time of the module is set to Friday, 24th of July 2020, 10:15:00 which can be checked by calling the < | ||
+ | |||
+ | In the example the setting < | ||
+ | |||
+ | The 1 second intervals are of course only chosen to check whether the alarm works properly. As said, the ESP32 is to wake up once an hour, take measurements, | ||
+ | |||
+ | Furthermore, | ||
+ | |||
+ | After programming the alarm and time registers, most of the code will not be needed anymore and can be left out of the final sketch. The ESP32 will only need the I2C library, an interrupt service routine to wake it up, and the < | ||
+ | |||
+ | < | ||
+ | < | ||
+ | < | ||
+ | <a href=" | ||
+ | <span style=" | ||
+ | Back to the top ⤴ | ||
+ | </ | ||
+ | </a> | ||
+ | </ | ||
+ | </ | ||
</ | </ |
amc2020/group_n/ds3231rtc.1595758360.txt.gz · Last modified: 2023/01/05 14:38 (external edit)