int count = 20; void setup() { Serial.begin(9600); } void loop() { count--; Serial.println(count); delay(1000); }