我对Lua很陌生。我试图自己解决以下问题,但我无法弄清楚。这是我的问题:
我在我的 NodeMCU devkit v0.9 上运行一个 Web 服务器。我可以在自己的计算机上轻松访问 Web 服务器,但如果我尝试通过 iPhone 访问服务器或使用requests
Python 中的模块,我总是会收到消息The network connection was lost.
我正在使用以下固件:nodemcu_float_0.9.6-dev_20150704。
print(wifi.sta.getip())
led1 = 3
led2 = 4
gpio.mode(led1, gpio.OUTPUT)
gpio.mode(led2, gpio.OUTPUT)
srv=net.createServer(net.TCP,30)
srv:listen(80,function(conn)
conn:on("receive", function(client,request)
local buf = "";
local _, _, method, path, vars = string.find(request, "([A-Z]+) (.+)?(.+) HTTP");
if(method == nil)then
_, _, method, path = string.find(request, "([A-Z]+) (.+) HTTP");
end
local _GET = {}
if (vars ~= nil)then
for k, v in string.gmatch(vars, "(%w+)=(%w+)&*") do
_GET[k] = v
end
end
buf = buf.."<h1> ESP8266 Web Server</h1>";
buf = buf.."<p>GPIO0 <a href=\"?pin=led1\"><button>SWITCH LIGHTS</button></a></p>";
buf = buf.."<p>"..gpio.read(led1).."</p>";
local _on,_off = "",""
if(_GET.pin == "led1")then
if(gpio.read(led1) == 1) then
gpio.write(led1, gpio.LOW);
else
gpio.write(led1, gpio.HIGH);
end
else end
client:send(buf);
client:close();
end)
end)