Use table syntax to work with >lines<

This commit is contained in:
Ollo 2021-02-13 15:11:42 +01:00
parent 621cef2ab5
commit 6232bf5180

View File

@ -1,16 +1,18 @@
-- Telnet client
local telnetClient=nil
lines = {}
-- Telnet Server -- Telnet Server
function startTelnetServer() function startTelnetServer()
s=net.createServer(net.TCP, 180) s=net.createServer(net.TCP, 180)
s:listen(23,function(c) s:listen(23,function(c)
global_c=c telnetClient=c
printlines = {}
function s_output(str) function s_output(str)
if(global_c~=nil) then if (telnetClient ~= nil) then
if #printlines > 0 then if (#lines > 0) then
printlines[ #printlines + 1] = str table.insert(lines, str)
else else
printlines[ #printlines + 1] = str table.insert(lines, str)
global_c:send("\r") -- Send something, so the queue is read after sending telnetClient:send("\r") -- Send something, so the queue is read after sending
end end
end end
end end
@ -20,11 +22,13 @@ function startTelnetServer()
end) end)
c:on("disconnection",function(c) c:on("disconnection",function(c)
node.output(nil) node.output(nil)
global_c=nil telnetClient=nil
end) end)
c:on("sent", function() c:on("sent", function()
if #printlines > 0 then if (#lines > 0) then
global_c:send(table.remove(printlines, 1)) local localstr = table.remove(lines, 1)
print( tostring(localstr) )
telnetClient:send(localstr)
end end
end) end)
print("Welcome to the Wordclock.") print("Welcome to the Wordclock.")
@ -32,5 +36,5 @@ function startTelnetServer()
print("- storeConfig()") print("- storeConfig()")
print("Visite https://github.com/nodemcu/nodemcu-firmware/wiki/nodemcu_api_en for further commands") print("Visite https://github.com/nodemcu/nodemcu-firmware/wiki/nodemcu_api_en for further commands")
end) end)
print("Telnetserver is up") print("Telnetserver started")
end end