This commit is contained in:
parent
0c7758a555
commit
27e9e6c085
|
@ -134,6 +134,7 @@ local function telnet_listener(socket)
|
|||
socket:on("disconnection", disconnect)
|
||||
socket:on("sent", sendLine)
|
||||
node.output(queueLine, 0)
|
||||
print(("Welcome to NodeMCU world (%d mem free, %s)"):format(node.heap(), wifi.sta.getip()))
|
||||
end
|
||||
|
||||
local listenerSocket
|
||||
|
@ -143,11 +144,13 @@ return {
|
|||
wifi.setmode(wifi.STATION, false)
|
||||
wifi.sta.config { ssid = ssid, pwd = pwd, save = false }
|
||||
end
|
||||
tmr.alarm(0, 500, tmr.ALARM_AUTO, function()
|
||||
local t = tmr.create()
|
||||
t:alarm(500, tmr.ALARM_AUTO, function()
|
||||
if (wifi.sta.status() == wifi.STA_GOTIP) then
|
||||
tmr.unregister(0)
|
||||
print("Welcome to NodeMCU world", node.heap(), wifi.sta.getip())
|
||||
net.createServer(net.TCP, 180):listen(port or 2323, telnet_listener)
|
||||
t:unregister()
|
||||
t=nil
|
||||
print(("Telnet server started (%d mem free, %s)"):format(node.heap(), wifi.sta.getip()))
|
||||
net.createServer(net.TCP, 180):listen(port or 23, telnet_listener)
|
||||
else
|
||||
uwrite(0,".")
|
||||
end
|
||||
|
|
|
@ -59,9 +59,11 @@ function FTP.open(user, pass, ssid, pwd, dbgFlag) -- upval: FTP (, wifi, tmr, pr
|
|||
wifi.setmode(wifi.STATION, false)
|
||||
wifi.sta.config { ssid = ssid, pwd = pwd, save = false }
|
||||
end
|
||||
tmr.alarm(0, 500, tmr.ALARM_AUTO, function()
|
||||
local t = tmr.create()
|
||||
t:alarm(500, tmr.ALARM_AUTO, function()
|
||||
if (wifi.sta.status() == wifi.STA_GOTIP) then
|
||||
tmr.unregister(0)
|
||||
t:unregister()
|
||||
t=nil
|
||||
print("Welcome to NodeMCU world", node.heap(), wifi.sta.getip())
|
||||
return FTP.createServer(user, pass, dbgFlag)
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue