1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-10 00:46:09 +01:00

17 lines
321 B
HTML
Raw Normal View History

2013-07-06 07:48:10 -04:00
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="zepto.min.js"></script>
<script type="text/javascript">
function refresh() {
2013-07-06 08:10:13 -04:00
$('#content').load('/arduino/temperature');
2013-07-06 07:48:10 -04:00
}
</script>
</head>
<body onload="setInterval(refresh, 2000);">
2013-07-06 08:10:13 -04:00
<span id="content">0</span>
2013-07-06 07:48:10 -04:00
</body>
</html>