#include <RTClib.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2);
RTC_DS1307 rtc;
void setup() {
// put your setup code here, to run once:
rtc.begin();
lcd.init();
lcd.backlight();
Serial.begin(9600);
lcd.begin(16,2);
lcd.setCursor(0,0);
lcd.print("RTC(real time cl");
lcd.setCursor(0,1);
lcd.print("ock)");
}
void loop() {
// put your main code here, to run repeatedly:
}