ผมใช้ Arduino Uno WiFi rev2 กับ Data logger shield แล้วผมก็เริ่มใช้งานด้วยการลองรันโค้ด Readtest ที่อยู่ใน examples --> DS1307RTC
#include <DS1307RTC.h>
#include <TimeLib.h>
#include <Wire.h>
void setup() {
Serial.begin(9600);
while (!Serial) ; // wait for serial
delay(200);
Serial.println("DS1307RTC Read Test");
Serial.println("-------------------");
}
void loop() {
tmElements_t tm;
if (RTC.read(tm)) {
Serial.print("Ok, Time = ");
print2digits(tm.Hour);
Serial.write(':');
print2digits(tm.Minute);
Serial.write(':');
print2digits(tm.Second);
Serial.print(", Date (D/M/Y) = ");
Serial.print(tm.Day);
Serial.write('/');
Serial.print(tm.Month);
Serial.write('/');
Serial.print(tmYearToCalendar(tm.Year));
Serial.println();
} else {
if (RTC.chipPresent()) {
Serial.println("The DS1307 is stopped. Please run the SetTime");
Serial.println("example to initialize the time and begin running.");
Serial.println();
} else {
Serial.println("DS1307 read error! Please check the circuitry.");
Serial.println();
}
delay(9000);
}
delay(1000);
}
void print2digits(int number) {
if (number >= 0 && number < 10) {
Serial.write('0');
}
Serial.print(number);
}
ต้องบอกก่อนว่าผมแก้จาก #include<Time.h> เป็น <TimeLib.h>
ซึ่งเมื่อ compile โค้ดนี้แล้วไม่ผ่านที่ if (RTC.read(tm)) {
โดยขึ้น error ว่า 'RTC_t {aka struct RTC_struct}' has no member named 'read'
อยากรู้ว่าต้องแก้ยังไงครับ ขอบคุณครับ
Compile โค้ด Readtest ของ real time clock(DS1307) ไม่ผ่าน ขอความช่วยเหลือหน่อยครับ
#include <DS1307RTC.h>
#include <TimeLib.h>
#include <Wire.h>
void setup() {
Serial.begin(9600);
while (!Serial) ; // wait for serial
delay(200);
Serial.println("DS1307RTC Read Test");
Serial.println("-------------------");
}
void loop() {
tmElements_t tm;
if (RTC.read(tm)) {
Serial.print("Ok, Time = ");
print2digits(tm.Hour);
Serial.write(':');
print2digits(tm.Minute);
Serial.write(':');
print2digits(tm.Second);
Serial.print(", Date (D/M/Y) = ");
Serial.print(tm.Day);
Serial.write('/');
Serial.print(tm.Month);
Serial.write('/');
Serial.print(tmYearToCalendar(tm.Year));
Serial.println();
} else {
if (RTC.chipPresent()) {
Serial.println("The DS1307 is stopped. Please run the SetTime");
Serial.println("example to initialize the time and begin running.");
Serial.println();
} else {
Serial.println("DS1307 read error! Please check the circuitry.");
Serial.println();
}
delay(9000);
}
delay(1000);
}
void print2digits(int number) {
if (number >= 0 && number < 10) {
Serial.write('0');
}
Serial.print(number);
}
ต้องบอกก่อนว่าผมแก้จาก #include<Time.h> เป็น <TimeLib.h>
ซึ่งเมื่อ compile โค้ดนี้แล้วไม่ผ่านที่ if (RTC.read(tm)) {
โดยขึ้น error ว่า 'RTC_t {aka struct RTC_struct}' has no member named 'read'
อยากรู้ว่าต้องแก้ยังไงครับ ขอบคุณครับ