Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
if(RD4==0|| RD5==0){
//Time[] = {0x05, 0x30 ,0x08, 0x22 , 0x10, 0x4, 0x15};
if(RD4==0) // UP MIN HOUR
{
up_min= up_min+1;
up_hour=up_hour+1;
Time[1]=up_min;
Time[2]=up_hour;
WriteClock(&Time[0]);
}
if(RD5==0) // UP MIN HOUR
{
up_min= up_min-1;
up_hour=up_hour-1;
Time[1]=up_min;
WriteClock(&Time[0]);
Time[2]=up_hour;
}
}
void WriteClock(char *array) // Not used
{
char x;
int tmp;
for(x=0;x<7;x++)
{
tmp = array[x] / 10;
tmp << = 4;
tmp += array[x] % 16;
WriteRTC(x,tmp);
}
}