Closed
Description
I tried to use your example getTimestamp.ino, but unfortunately I have a compilation error:
In function 'void loop()':
sketch_oct04a:22:58: error: 'getTimestampUNIX' was not declared in this scope
Serial.println(getTimestampUNIX(2020, 1, 25, 14, 30, 20)); // returns: 1579962620 (remember the given offset of 3600 seconds in line 9)
^
sketch_oct04a:29:57: error: 'getTimestampNTP' was not declared in this scope
Serial.println(getTimestampNTP(2020, 1, 25, 14, 30, 20)); // returns: 3788951420 (remember the given offset of 3600 seconds in line 9)
^
exit status 1
'getTimestampUNIX' was not declared in this scope
Please help me