Well first of all i sorry for my grammar
Anyways.
I am using a ChronoDot from macetech. Its pretty much a ds3231.
I was able to get the time to show on the serial monitor using the time library
http://www.arduino.cc/playground/Code/Time
anyways. I am confuse on how to use the settime thingy
setTime(hr,min,sec,day,month,yr); // another way to set the time
Anyways. in this segment of my program i am trying to add one minute to the current time when i press button 6
buttonState6 = digitalRead(button6);
if(buttonState6 == HIGH)
{
int minplus = minute();
setTime(hour(),minplus++,second(),day(),month(),year());
}
Nothing seems to work when i try this.
Also i change all the "int ###" to "###()" because the first thing didn't work.
Anyways... Thanks for any help