time functions such as hourFormat12()

If a button is pressed, My_Hour/minute/second ++. So everytime a button is pressed ,it increments the time.

if(Button_Hour == HIGH)
{
  if(My_Hour > 12) My_Hour = 1; //checks to see it does not go over limit, if it does, set back to 1

  else My_Hour++;

}