Wordclock/main.lua

37 lines
808 B
Lua
Raw Normal View History

2016-05-04 23:23:49 +02:00
dofile("wlancfg.lua")
2016-05-16 13:54:42 +02:00
dofile("timecore.lua")
timezoneoffset=1
2016-05-04 23:23:49 +02:00
-- Wait to be connect to the WiFi access point.
tmr.alarm(0, 100, 1, function()
if wifi.sta.status() ~= 5 then
print("Connecting to AP...")
else
tmr.stop(0)
-- Switch of the booting lamp
gpio.write(5, gpio.LOW)
print('IP: ',wifi.sta.getip())
--ptbtime1.ptb.de
2016-05-16 13:54:42 +02:00
sntp.sync('ptbtime1.ptb.de',
2016-05-04 23:23:49 +02:00
function(sec,usec,server)
print('sync', sec, usec, server)
end,
function()
print('failed!')
end
)
end
end)
tmr.alarm(1, 1000, 1 ,function()
sec, usec = rtctime.get()
2016-05-16 13:54:42 +02:00
time = getTime(sec, timezoneoffset)
2016-05-04 23:23:49 +02:00
print("Time : " , sec)
2016-05-16 13:54:42 +02:00
print("Local time : " .. time.year .. "-" .. time.month .. "-" .. time.day .. " " .. time.hour .. ":" .. time.minute .. ":" .. time.second)
2016-05-04 23:23:49 +02:00
end)