#include <RTClib.h>
#include <Wire.h>
RTC_DS1307 RTC;
void setup() {
// put your setup code here, to run once:
Serial.begin (9600);
RTC.begin();
RTC.adjust(DateTime(2030,8,17,10,15,25));
}
void loop() {
// put your main code here, to run repeatedly:
DateTime now = RTC.now();
Serial.print(now.year());
Serial.print(now.day());
delay(500);
}