1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-12 23:08:52 +01:00
Arduino/libraries/Bridge/examples/TemperatureWebPanel/www/index.html

17 lines
321 B
HTML
Raw Normal View History

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