void setup() {
Serial.begin(9600);
}
void loop() {
static int testVariable;
while(testVariable >5){
Serial.println("We are in the while loop now.");
}
testVariable++;
Serial.println(testVariable);
delay(1000);
}
void setup() {
Serial.begin(9600);
}
void loop() {
static int testVariable;
while(testVariable >5){
Serial.println("We are in the while loop now.");
}
testVariable++;
Serial.println(testVariable);
delay(1000);
}