1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Mise à jour de la température</title>
<script language="javascript" type="text/javascript">
window.onload = function()
{
requeteAjax(afficheTemp);
}
function requeteAjax(callback)
{
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function()
{
if (xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 0))
{
callback(xhr.responseText);
}
};
xhr.open("GET", "ajax", true);
xhr.send();
setTimeout(function() {requeteAjax(afficheTemp);}, 50);
}
function afficheTemp(data)
{
float temp = parseFloat(data)/10;
document.getElementById("temperature").innerHTML = '<mark> ' + temp + ' Volts </mark>';
}
</script>
</head>
<body>
<div style="text-align: center; color: rgb(250,160,60); background-color: rgb(0,151,156); width: 500px; height: 300px">
<br />
<h2>Serveur Arduino UNO - Shield Ethernet 2<br />Capteur LM35:</h2>
<h3>Affichage de la température </h3>
<p>Utilisation de la technologie ajax pour le rafraichissement <br />en temps réel de la valeur lue, sans rechargement de la page</p>
<p id="temperature" style="font-size: 1.3em">
<mark> "temp" mV </mark>
</p>
</div>
</body>
</html> |