mirror of
https://github.com/arduino/Arduino.git
synced 2025-02-01 21:52:12 +01:00
17 lines
334 B
HTML
17 lines
334 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<script type="text/javascript" src="zepto.min.js"></script>
|
||
|
<script type="text/javascript">
|
||
|
function refresh() {
|
||
|
$('#content').load('/arduino/avr/temperature');
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
</head>
|
||
|
<body onload="setInterval(refresh, 1000);">
|
||
|
Analog 0: <span id="content">0</span>
|
||
|
</body>
|
||
|
</html>
|
||
|
|