void getDateTime() {
char output[64];
char myStr[] = "20-02 20h11.wav000";
char *myPtr = strtok(myStr, " ");
sprintf(output,"Date is %s and the time is ", myPtr );
Serial.print(output);
myPtr = strtok(NULL, ".");
Serial.println(myPtr);
}
void setup() {
Serial.begin(115200);
Serial.println("Hello, Uno!");
getDateTime();
}
void loop() {
delay(10); // this speeds up the simulation
}