Current Lua downloadable firmware will be posted here

User avatar
By Trickuncle
#36786 Although I seem to have working code, every single time I send code to the ESP8266 module, this error always shows up:
"init.lua:16: only one tcp server allowed"
And line 16 looks like this:
Code: Select all srv=net.createServer(net.TCP,3600)

There are no other lines in my code creating servers...
Can anyone explain what this means?
Thanks!
User avatar
By xtal
#36790 For me it means I didn,t reset before doing dofile("xxx.xx") again or you are reissuing the server code again before closing it. You're trying to run another server while previous server is running...