Wordclock/main.lua
2016-05-16 11:15:48 +02:00

32 lines
588 B
Lua

dofile("wlancfg.lua")
-- 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
sntp.sync('192.53.103.108',
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()
print("Time : " , sec)
end)