do wifi.setmode(wifi.SOFTAP) wifi.ap.config({ ssid = "test", pwd = "12345678" }) gpio.mode(1, gpio.OUTPUT) local srv = net.createServer(net.TCP) srv:listen(80, function(conn) conn:on("receive", function(client, request) local buf = "" local _, _, method, path, vars = string.find(request, "([A-Z]+) (.+)?(.+) HTTP") -- luacheck: no unused if (method == nil) then _, _, method, path = string.find(request, "([A-Z]+) (.+) HTTP") -- luacheck: no unused end local _GET = {} if (vars ~= nil) then for k, v in string.gmatch(vars, "(%w+)=(%w+)&*") do _GET[k] = v end end buf = buf .. "

Hello, this is NodeMCU.

" .. "
Turn PIN1
" client:send(buf) end) conn:on("sent", function(c) c:close() end) end) end