// Define individual float variables
float delay1 = 0.0;
float delay2 = 0.0;
float delay3 = 0.0;
float delay4 = 0.0;
float delay5 = 0.0;
void setup() {
// Initialize serial communication at 9600 bits per second
Serial.begin(9600);
}
void loop() {
if (delay3>=3){
Serial.println("this message appears every 3 seconds");
delay3 = 0;
}
delaysLoop();
}