I would actually implement it more like this:
final long maxSpeed = 500; //500 milliseconds (0.5 seconds)
//So the timer always triggers at the max speed
final long period = maxSpeed;
int currentSpeed=0;
final int speeds = 3;
//3s, 2s, 1s
final int[] speed = {maxSpeed*6, maxSpeed*4, maxSpeed*2};
long blinkTime=0;
long totalTime=0;
timer.scheduleAtFixedRate(new TimerTask() {
public void run() {
//If the currentSpeed isn't the maxSpeed
if(currentSpeed<speeds) {
blinkTime = blinkTime+maxSpeed;
totalTime = totalTime+maxSpeed;
//After 5 seconds, blink the button and upgrade the speed
if(totalTime >= 5000) {
blinkButton();
totalTime=0;
blinkTime=0;
currentSpeed++;
//After the designated wait time, blink the button
}else if(blinkTime >= speed[currentSpeed]) {
blinkButton();
blinkTime=0;
}
//If the currentSpeed is the maxSpeed
//blink the button every time the timer triggers
}else{
blinkButton();
}
}
}, delay, period);
public void blinkButton() {
//Custom function
}
This code is so disgusting, I just typed it up right here.
Basically it always triggers at the fastest speed you want, however when the timer first starts it counts up to 3 seconds before making the button blink. As it counts up to 5 seconds, it increases the blink speed to 2 seconds and then the blinkButton() will be called every 2 seconds until 5 seconds is reached again, etc etc.
I've heard that timers tend to randomly get cleared, so I hope you're not using it to make the button blink for long periods of time.