2023-12-13 16:32:12 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2023-12-18 13:49:09 +00:00
|
|
|
<meta charset="UTF-8" />
|
2023-12-14 18:27:07 +00:00
|
|
|
<head>
|
|
|
|
<title>therminator</title>
|
2023-12-15 22:15:54 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="/style.css" />
|
2023-12-14 18:27:07 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
2023-12-15 22:15:54 +00:00
|
|
|
<h1>/* therminator */</h1>
|
|
|
|
<p>last sensor update: <span id="time"></span></p>
|
2023-12-19 20:45:27 +00:00
|
|
|
<div id="du">
|
|
|
|
<p>current data update interval (ms): <span id="updInt"></span></p>
|
|
|
|
<p>
|
|
|
|
set data update interval (ms):
|
|
|
|
<select
|
|
|
|
id="upd"
|
|
|
|
onchange="setUpdateInterval();"
|
|
|
|
onfocus="this.selectedIndex = -1;"
|
|
|
|
>
|
|
|
|
<option>10</option>
|
|
|
|
<option>20</option>
|
|
|
|
<option>50</option>
|
|
|
|
<option>100</option>
|
|
|
|
<option>200</option>
|
|
|
|
<option selected>500</option>
|
|
|
|
<option>1000</option>
|
|
|
|
</select>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div id="cu">
|
|
|
|
<p>current chart update interval (ms): <span id="cupdInt"></span></p>
|
|
|
|
<p>
|
|
|
|
set chart update interval (ms):
|
|
|
|
<select
|
|
|
|
id="chartUpd"
|
|
|
|
onchange="location.reload()"
|
|
|
|
onfocus="this.selectedIndex = -1;"
|
|
|
|
>
|
|
|
|
<option>200</option>
|
|
|
|
<option selected>500</option>
|
|
|
|
<option>1000</option>
|
|
|
|
</select>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<br />
|
2023-12-19 20:09:27 +00:00
|
|
|
<button id="startRec" onclick="startRecording()">Start recording</button>
|
|
|
|
<button id="stopRec" onclick="stopRecording()">Stop recording</button>
|
2023-12-19 20:45:27 +00:00
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td class="chart-container">
|
|
|
|
<h2>Channel A:</h2>
|
|
|
|
<label for="labelA">label: </label
|
|
|
|
><input type="text" value="tempA" id="labelA" />
|
|
|
|
<div id="error-tempA"></div>
|
|
|
|
<canvas id="chartA"></canvas>
|
|
|
|
</td>
|
|
|
|
<td class="chart-container">
|
|
|
|
<h2>Channel B:</h2>
|
|
|
|
<label for="labelB">label: </label
|
|
|
|
><input type="text" value="tempB" id="labelB" />
|
|
|
|
<div id="error-tempB"></div>
|
|
|
|
<canvas id="chartB"></canvas>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2023-12-14 18:27:07 +00:00
|
|
|
<script src="script.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|