I'm trying to get the current timestamp on my Feather Huzzah 32 running micro python. I have read some of the documentation on utime which should be able to get the current timestamp, but I can't seem to figure it out.
https://docs.micropython.org/en/latest/library/utime.html
When I do utime.localtime() it returns (2000,1,1,0,min,secs,5,1). I'm trying to get the current time, how would I do this?
(Standard python libraries like datetime are not supported)