following code runs fine (in the serial monitor, displays time in seconds since sketch began running)
however, if I exit the serial monitor and then re-open it...it starts back at 0? the tx light on the board is still blinking every 1second.
unsigned long Ms;
unsigned long TimeInSeconds;
void setup(){
Serial.begin(9600);
}
void loop(){
Serial.print("Time: ");
Ms = millis();
TimeInSeconds = Ms / 1000;
Serial.println(TimeInSeconds);
delay(1000); //transmit the time every one second
}