27 lines
673 B
Lua
27 lines
673 B
Lua
-- Tell the chip to connect to the access point
|
|
|
|
print('Welcome')
|
|
wifi.setmode(wifi.STATION)
|
|
print('set mode=STATION (mode='..wifi.getmode()..')')
|
|
print('MAC: ',wifi.sta.getmac())
|
|
print('chip: ',node.chipid())
|
|
print('heap: ',node.heap())
|
|
wifi.sta.config("Internet","")
|
|
|
|
--require("httpserver")
|
|
|
|
-- Wait until WiFi connection is established
|
|
|
|
tmr.alarm(0, 3000, 1, function()
|
|
if wifi.sta.getip() == nil then
|
|
print("Connecting to AP...")
|
|
else
|
|
tmr.stop(0)
|
|
print('IP: ',wifi.sta.getip())
|
|
local port = 80
|
|
--server = httpserver.start(port, 10)
|
|
--print("nodemcu-httpserver started on port " .. port)
|
|
end
|
|
end)
|
|
|