arduino/libraries/Bridge/examples/TemperatureWebPanel/www/index.html

17 lines
321 B
HTML
Raw Normal View History

2018-11-03 20:21:33 +00:00
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="zepto.min.js"></script>
<script type="text/javascript">
function refresh() {
$('#content').load('/arduino/temperature');
}
</script>
</head>
<body onload="setInterval(refresh, 2000);">
<span id="content">0</span>
</body>
</html>