Why would this:
unsigned long delayHeartBeat = (5 * 60 * 1000); // 5 minutes.
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}
generate this:
C:\temp\test\test.ino:1:42: warning: integer overflow in expression [-Woverflow]
unsigned long delayHeartBeat = (5 * 60 * 1000); // 5 minutes.
Compiled for 5v 16mhz Arduino ProMini