code-lua-iot/www/index.lua
2024-12-20 13:51:47 +01:00

27 lines
630 B
Lua

<!DOCTYPE html>
<html>
<head>
<title>ESP 32 web page</title>
<link href="style.css" rel="stylesheet"/>
</head>
<body>
<h1>Hello, world!</h1>
<?lua
nb = nb + 1
print(nb.." Chargements")
?>
<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>Building temp</h>
<?lua
print("Max : ["..max_place.."] "..max_temp)
print("Min : ["..min_place.."] "..min_temp)
?>
</body>
</html>