Here is a date and time parser...
I don't know where the time is coming from and the time zone seems to be somewhere in the
??middle east??
but you should be able to adjust the hour to fit your needs with some simple math.
in this other thread... http://www.esp8266.com/viewtopic.php?f=41&t=6712&start=5
mmiscool states that the "time" command will likely change.
memclear
cls
button "GetTime" [GetTime]
button "Exit " [Exit]
wait
[GetTime]
print time()
bla = time()
dw = mid(bla,1,3) 'dow
mh = mid(bla,5,3) 'month
dt = mid(bla,9,2) 'date
hh = mid(bla,12,2) 'hour
mm = mid(bla,15,2) 'min
ss = mid(bla,18,2) 'sec
yr = mid(bla,21,4) 'year
print dw
print mh
print dt
print hh
print mm
print ss
print yr
print
print "Heap"
print flashfree() 'how much mem left
wait
[Exit]
end
dwight