void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println(millis());
delay(250);
}
void loop() {
// put your main code here, to run repeatedly:
static unsigned long now = millis();
Serial.print(now);
while(1);
}