Skip to content

Instantly share code, notes, and snippets.

@mprz
Created December 29, 2015 23:16
Show Gist options
  • Save mprz/13efba4b8638ddff08a7 to your computer and use it in GitHub Desktop.
Save mprz/13efba4b8638ddff08a7 to your computer and use it in GitHub Desktop.
wifi.setmode(wifi.STATION)
wifi.sta.config("network","password") -- Replace these two args with your own network
ip, nm, gw=wifi.sta.getip()
print("\nIP Info:\nIP Address: "..ip.." \nNetmask: "..nm.." \n")
led1 = 3
led2 = 4
gpio.mode(led1, gpio.OUTPUT)
gpio.mode(led2, gpio.OUTPUT)
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");
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.."HTTP/1.1 200 OK\n\n";
buf = buf.."<!DOCTYPE HTML>\n\n<html>\n\n<head><meta content=\"text/html; charset=utf-8\">\n";
buf = buf.."<title>ESP8266 Blinker Thing</title></head>\n\n\n<body>\n\n";
buf = buf.."<h1> ESP8266 Web Server</h1>";
buf = buf.."<p>GPIO0 <a href=\"?pin=ON1\"><button>ON</button></a>&nbsp;<a href=\"?pin=OFF1\"><button>OFF</button></a></p>";
buf = buf.."<p>GPIO2 <a href=\"?pin=ON2\"><button>ON</button></a>&nbsp;<a href=\"?pin=OFF2\"><button>OFF</button></a></p>";
local _on,_off = "",""
if(_GET.pin == "ON1")then
gpio.write(led1, gpio.HIGH);
elseif(_GET.pin == "OFF1")then
gpio.write(led1, gpio.LOW);
elseif(_GET.pin == "ON2")then
gpio.write(led2, gpio.HIGH);
elseif(_GET.pin == "OFF2")then
gpio.write(led2, gpio.LOW);
end
buf = buf.."</body>\n\n</html>\n\n";
client:send(buf);
client:close();
collectgarbage();
end)
end)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment