#include <PCD8544.h>
#include <Wire.h>
#include <RTClib.h>
// A custom glyph (a smiley)...
static const byte glyph[] = { B00010000, B00110100, B00110000, B00110100, B00010000 };
static PCD8544 lcd;
RTC_DS3231 rtc;
void setup() {
// Initialize LCD and RTC
lcd.begin(84, 48);
lcd.createChar(0, glyph);
if (!rtc.begin()) {
lcd.setCursor(0, 0);
lcd.print("Couldn't find RTC");
while (1);
}
if (rtc.lostPower()) {
lcd.setCursor(0, 0);
lcd.print("RTC lost power");
rtc.adjust(DateTime(F(__DATE__), F(__TIME__))); // Set the time to compile time
}
}
void loop() {
DateTime now = rtc.now();
// Line 1: Display time
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Tm:");
lcd.setCursor(0, 1);
lcd.print(now.hour(), DEC);
lcd.print(':');
lcd.print(now.minute(), DEC);
lcd.print(':');
lcd.print(now.second(), DEC);
delay(1000);
// Line 2: Display date
lcd.clear();
lcd.setCursor(0, 2);
lcd.print("Dt:");
lcd.setCursor(0, 3);
lcd.print(now.day(), DEC);
lcd.print('/');
lcd.print(now.month(), DEC);
lcd.print('/');
lcd.print(now.year(), DEC);
delay(1000);
}
uno:12
uno:11
uno:10
uno:9
uno:8
uno:7
uno:6
uno:5
uno:4
uno:3
uno:2
uno:GND.2
uno:RESET.2
uno:0
uno:1
uno:13
uno:3.3V
uno:AREF
uno:A0
uno:A1
uno:A2
uno:A3
uno:A4
uno:A5
uno:A6
uno:A7
uno:5V
uno:RESET
uno:GND.1
uno:VIN
uno:12.2
uno:5V.2
uno:13.2
uno:11.2
uno:RESET.3
uno:GND.3
lcd:RST.2
lcd:CE.2
lcd:DC.2
lcd:DIN.2
lcd:CLK.2
lcd:VCC.2
lcd:BL.2
lcd:GND.2
lcd:RST
lcd:CE
lcd:DC
lcd:DIN
lcd:CLK
lcd:VCC
lcd:BL
lcd:GND
rtc1:GND
rtc1:5V
rtc1:SDA
rtc1:SCL
rtc1:SQW