31 lines
866 B
HTML
31 lines
866 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr" dir="ltr">
|
|
|
|
<head>
|
|
<meta charset='utf-8' name='viewport' content='width=device-width, initial-scale=1.0'>
|
|
<title>Affichage des températures</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Affichage des températures 190727.1349</h1>
|
|
<br>
|
|
Les températures mesurées sont:<br>
|
|
|
|
|
|
<%
|
|
if (ztemp1 ~= nil) then
|
|
zout("<br>Température intérieure chambre à coucher "..ztemp1.."°C")
|
|
end
|
|
if (ztemp2 ~= nil) then
|
|
zout("<br>Température extérieure sud (nodemcu 29) "..ztemp2.."°C")
|
|
end
|
|
if (ztemp3 ~= nil) then
|
|
zout("<br>Température extérieure nord (nodemcu 30) "..ztemp3.."°C")
|
|
end
|
|
|
|
zout("<br><br>RAM: "..node.heap().."<br>")
|
|
%>
|
|
|
|
</body>
|
|
</html>
|