Controlling Delay with a potentiometer

Instead of:

int Minute = 0;    // variable to store the value coming from the sensor
int Hours = 0;    // variable to store the value coming from the sensor

Try:

long Minute = 0;    // variable to store the value coming from the sensor
long Hours = 0;    // variable to store the value coming from the sensor