arduino __DATE__

This commit is contained in:
2023-08-16 22:03:50 +03:00
parent 950d9d2f20
commit 5538558c7c
2 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
void loop() {
Serial.println("Built: " __DATE__ " | " __TIME__);
/**
* Example show:
* Built: Aug 16 2023 | 21:42:32
*/
}