ESP32 실시간 클록 모듈(DS1302) RTC 모듈
이 레슨에서는 ESP32 개발 보드로 실시간 시계(RTC) 모듈을 설정하고 사용하는 방법을 배웁니다. DS1302 RTC 모듈을 통합하고, 그 기능을 이해하고, 현재 날짜와 시간을 표시하도록 ESP32를 프로그래밍하는 방법을 다룹니다. 또한 RTC가 날짜와 시간 설정을 잃어버린 상황을 처리하고 스케치의 컴파일 시간으로 자동으로 설정하는 방법도 배웁니다. 이 프로젝트는 마이크로컨트롤러 프로젝트에서 시간 관련 기능에 대한 이해도를 높이고자 하는 분들에게 이상적입니다.
다른 모듈도 참고하세요. DS3231 RTC 모듈입니다. 사용법은 동일합니다.
위 모듈을 사용할 때 연결도를 참고하세요.
회로 연결
라이브러리를 설치하려면 아두이노 라이브러리 관리자를 사용하여 "Rtc by Makuna"를 검색하여 설치합니다.
ESP32 전체 코드는 아래와 같습니다. 코드 설명은 아래에 이어집니다.
/*
This code initializes and sets up the RTC DS1302 module and prints the current date and
time on the serial monitor. It also checks if the RTC is running and has a valid date and time.
If not, it sets the RTC to the compile time.
Due to the time required for compilation and upload, there may be a time difference.
Board: ESP32 Development Board
Component: Real Time Clock Module (DS1302)
Library: https://github.com/Makuna/Rtc (Rtc by Makuna)
*/
#include <ThreeWire.h>
#include <RtcDS1302.h>
const int IO = 27; // DAT
const int SCLK = 14; // CLK
const int CE = 26; // RST
ThreeWire myWire(IO, SCLK, CE);
RtcDS1302<ThreeWire> Rtc(myWire);
void setup() {
Serial.begin(9600);
Serial.print("compiled: ");
Serial.print(__DATE__);
Serial.println(__TIME__);
Rtc.Begin();
RtcDateTime compiled = RtcDateTime(__DATE__, __TIME__);
printDateTime(compiled);
Serial.println();
if (!Rtc.IsDateTimeValid()) {
// Common Causes:
// 1) first time you ran and the device wasn't running yet
// 2) the battery on the device is low or even missing
Serial.println("RTC lost confidence in the DateTime!");
Rtc.SetDateTime(compiled);
}
if (Rtc.GetIsWriteProtected()) {
Serial.println("RTC was write protected, enabling writing now");
Rtc.SetIsWriteProtected(false);
}
if (!Rtc.GetIsRunning()) {
Serial.println("RTC was not actively running, starting now");
Rtc.SetIsRunning(true);
}
RtcDateTime now = Rtc.GetDateTime();
if (now < compiled) {
Serial.println("RTC is older than compile time! (Updating DateTime)");
Rtc.SetDateTime(compiled);
} else if (now > compiled) {
Serial.println("RTC is newer than compile time. (this is expected)");
} else if (now == compiled) {
Serial.println("RTC is the same as compile time! (not expected but all is fine)");
}
}
void loop() {
RtcDateTime now = Rtc.GetDateTime();
printDateTime(now);
Serial.println();
if (!now.IsValid()) {
// Common Causes:
// 1) the battery on the device is low or even missing and the power line was disconnected
Serial.println("RTC lost confidence in the DateTime!");
}
delay(1000); // five seconds
}
#define countof(a) (sizeof(a) / sizeof(a[0]))
void printDateTime(const RtcDateTime& dt) {
char datestring[20];
snprintf_P(datestring,
countof(datestring),
PSTR("%02u/%02u/%04u %02u:%02u:%02u"),
dt.Month(),
dt.Day(),
dt.Year(),
dt.Hour(),
dt.Minute(),
dt.Second());
Serial.print(datestring);
}
코드 분석입니다.
1. 초기화 및 라이브러리 포함 참고
라이브러리를 설치하려면 Arduino Library Manager를 사용하고 "Rtc by Makuna"를 검색하여 설치합니다.
여기에는 DS1302 RTC 모듈에 필요한 라이브러리가 포함되어 있습니다.
#include <ThreeWire.h>
#include <RtcDS1302.h>
2. 핀 정의 및 RTC 인스턴스 생성
통신용 핀이 정의되고 RTC 인스턴스가 생성됩니다.
const int IO = 27; // DAT
const int SCLK = 14; // CLK
const int CE = 26; // RST
ThreeWire myWire(IO, SCLK, CE));
RtcDS1302<ThreeWire> Rtc(myWire);
3. setup() 함수
이 함수는 직렬 통신을 초기화하고 RTC 모듈을 설정합니다. RTC가 올바르게 실행되는지 확인하기 위해 다양한 검사를 수행합니다.
void setup() {
Serial.begin(9600);
Serial.print("compiled: ");
Serial.print(__DATE__);
Serial.println(__TIME__);
Rtc.Begin();
RtcDateTime compiled = RtcDateTime(__DATE__, __TIME__);
printDateTime(compiled);
Serial.println();
if (!Rtc.IsDateTimeValid()) {
// Common Causes:
// 1) first time you ran and the device wasn't running yet
// 2) the battery on the device is low or even missing
Serial.println("RTC lost confidence in the DateTime!");
Rtc.SetDateTime(compiled);
}
if (Rtc.GetIsWriteProtected()) {
Serial.println("RTC was write protected, enabling writing now");
Rtc.SetIsWriteProtected(false);
}
if (!Rtc.GetIsRunning()) {
Serial.println("RTC was not actively running, starting now");
Rtc.SetIsRunning(true);
}
RtcDateTime now = Rtc.GetDateTime();
if (now < compiled) {
Serial.println("RTC is older than compile time! (Updating DateTime)");
Rtc.SetDateTime(compiled);
} else if (now > compiled) {
Serial.println("RTC is newer than compile time. (this is expected)");
} else if (now == compiled) {
Serial.println("RTC is the same as compile time! (not expected but all is fine)");
}
}
4. loop() 함수
이 함수는 RTC에서 현재 날짜와 시간을 주기적으로 가져와 직렬 모니터에 인쇄합니다. 또한 RTC가 여전히 유효한 날짜와 시간을 유지하고 있는지 확인합니다.
void loop() {
RtcDateTime now = Rtc.GetDateTime();
printDateTime(now);
Serial.println();
if (!now.IsValid()) {
// Common Causes:
// 1) the battery on the device is low or even missing and the power line was disconnected
Serial.println("RTC lost confidence in the DateTime!");
}
delay(5000); // five seconds
}
5. 날짜 및 시간 인쇄 함수
RtcDateTime 객체를 가져와서 포맷된 날짜와 시간을 직렬 모니터에 인쇄하는 도우미 함수입니다.
void printDateTime(const RtcDateTime& dt) {
char datestring[20];
snprintf_P(datestring,
countof(datestring),
PSTR("%02u/%02u/%04u %02u:%02u:%02u"),
dt.Month(),
dt.Day(),
dt.Year(),
dt.Hour(),
dt.Minute(),
dt.Second());
Serial.print(datestring);
}
위 참고자료는 ESP 교육 자료를 강의하는 SunFounder 자료임을 알려드리고, 이 링크를 따라가면 원본 문서를 보실 수 있습니다. 배움을 멈추지 마세요.
참고문서: DS3231을 사용한 ESP32 ESP-IDF RTC 실시간 클록
'ESP32' 카테고리의 다른 글
AT Command Set 참고, AT Message (1) | 2024.10.28 |
---|---|
esp32 AT command 사용법 정리 (1) | 2024.10.28 |
Arduino IDE로 ESP32를 프로그래밍하는 방법 (7) | 2024.10.28 |
MQTT란 무엇이며 어떻게 작동하는가 (8) | 2024.10.26 |
ESP32 Arduino: 타이머 인터럽트 (6) | 2024.10.24 |
ESP32 타이머 및 타이머 인터럽트 (4) | 2024.10.24 |
ESP32: Bluetooth를 사용하여 WiFi 연결 설정 (6) | 2024.10.23 |
Android와 함께하는 ESP32 블루투스 (2) | 2024.10.23 |
더욱 좋은 정보를 제공하겠습니다.~ ^^