snipplets.dev/snipplets/code/Arduino/compile_date_time.c

8 lines
145 B
C
Raw Normal View History

2023-08-16 22:03:50 +03:00
void loop() {
Serial.println("Built: " __DATE__ " | " __TIME__);
/**
* Example show:
* Built: Aug 16 2023 | 21:42:32
*/
}