mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-04 15:24:12 +01:00
17 lines
321 B
HTML
17 lines
321 B
HTML
<!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>
|
|
|