188

Primary tabs

arduino version 1.8.8

date of this : Monday 7 January 14:58:00 AEDT 2019

void setup() {
// put your setup code here, to run once:
// to show the Show Timestamp feature in Arduino IDE 1.8.8
Serial.begin(9600);
}

void loop() {
// transmit word and wait a while
// then, using the 'Show Timestamp' feature in Arduino IDE 1.8.8
// watch the time stamps
// this is useful for testing logging type programs
Serial.println("tick");
delay(5000);
}

14:56:01.519 -> tick

Subscribe to RSS - 188