I have a DS1307 and i was looking for Arduino programming examples for it. I found what there is on the NetDuino, but wondered if there was aything for Arduino?
Thankyou
db
Moderators: adafruit_support_bill, adafruit
I been running the clock now with the sketch, but i have a small problem it reads the time like this 12:6:7 instead of 12:06:07...adafruit_support wrote:There is a link to the library on the tutorial page: http://github.com/adafruit/RTClib
if(now.hour() < 10)
Serial.print("0");
Serial.print(':'); Serial.print(now.hour(), DEC);
Serial.print(':');
etc,Users browsing this forum: No registered users and 1 guest