// Find the bug: This creates an infinite loop!
void setup() {
pinMode(0, OUTPUT);
}
void loop() {
int count = 0;
while (count < 5) { // Should blink 5 times
digitalWrite(0, HIGH);
delay(200);
digitalWrite(0, LOW);
delay(200);
// BUG: Missing count = count + 1; here!
}
delay(1000);
}