millis()
Returns the number of milliseconds since the Z-Uno board began running the current program. millis() none Number of milliseconds since the program started (unsigned long)
void setup() {
Serial.begin();
}
void loop() {
Serial.println(millis());
delay(1000);
}