29 lines
784 B
HTML
29 lines
784 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.0951</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 "..ztemp2.."°C")
|
|
end
|
|
if (ztemp3 ~= nil) then
|
|
zout("<br>Température extérieure nord "..ztemp3.."°C")
|
|
end
|
|
%>
|
|
|
|
</body>
|
|
</html>
|