Arduino Sends Old Data Through Serial
问题 I think my problem would best be explained with an example. Here is some Arduino Code: void setup() { Serial.begin(9600); } void loop() { Serial.println(millis()); delay(1); } ...and here is the output: Now, those numbers at the beginning aren't just your regular old first-bytes-of-serial-data-are-always-messed-up numbers. Those numbers are left over from the last time I opened the serial monitor. How do I know this? Because I counted how many seconds had gone by since I last opened the