38 lines
878 B
Lua
38 lines
878 B
Lua
<html>
|
|
<head>
|
|
<title>ESP 32 web page</title>
|
|
<link href="style.css" rel="stylesheet"/>
|
|
</head>
|
|
<body>
|
|
<h1>Hello, world!</h1>
|
|
<?lua
|
|
nb = nb + 1
|
|
console(nb.." Chargements")
|
|
print(nb.." Chargements")
|
|
?>
|
|
<h1>DHT22</h1>
|
|
<?lua
|
|
-- print("Temp: "..s:read("temperature").." Humi: "..s:read("humidity"))
|
|
?>
|
|
<h1>Led</h1>
|
|
<iframe name="fd" style="display:none"></iframe>
|
|
<form action="ledon.lua" target="fd">
|
|
<button type="submit">On</button>
|
|
</form>
|
|
<form action="ledoff.lua" target="fd">
|
|
<button type="submit">Off</button>
|
|
</form>
|
|
<h1>Buzzer</h1>
|
|
<form action="buzz.lua" target="fd">
|
|
<button type="submit">Buzz</button>
|
|
</form>
|
|
<h1>Networks</h1>
|
|
<ul>
|
|
<?lua
|
|
for i=0,#nets do
|
|
print("<li>"..nets[i].ssid.."</li>")
|
|
end
|
|
?>
|
|
</ul>
|
|
</body>
|
|
</html>
|