understanding loop

(deleted)

program(){
do something
delay(60000); // wait 60 s
}

What's that?

(deleted)

If you need a time interval greater than a few millisecs don't use delay(). You need to use the technique in the Blink Without Delay example sketch.

...R