42 lines
996 B
HTML
42 lines
996 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Welcome file</title>
|
|
<link rel="stylesheet" href="https://stackedit.io/style.css" />
|
|
</head>
|
|
|
|
<body class="stackedit">
|
|
<div class="stackedit__html">
|
|
<h1 id="значение-ножки-сейчас--">Значение потенциометра сейчас - <span id="1"></span></h1>
|
|
<h1 id="значение-ножки-сейчас--">Значение ножки сейчас - <span id="2"></span></h1>
|
|
</div>
|
|
<script>
|
|
setInterval(()=>{
|
|
fetch('/potentiometer')
|
|
.then((response) => {
|
|
return response.json();
|
|
})
|
|
|
|
.then((data) => {
|
|
document.getElementById("1").innerHTML = data;
|
|
|
|
})
|
|
|
|
fetch('/gpu')
|
|
.then((response) => {
|
|
return response.json();
|
|
})
|
|
|
|
.then((data) => {
|
|
document.getElementById("2").innerHTML = data;
|
|
|
|
})
|
|
} , 200);
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|