45 lines
1.4 KiB
HTML
45 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<meta charset="UTF-8" />
|
|
<head>
|
|
<title>therminator</title>
|
|
<link rel="stylesheet" type="text/css" href="/style.css" />
|
|
</head>
|
|
<body>
|
|
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
|
<h1>/* therminator */</h1>
|
|
<p>last sensor update: <span id="time"></span></p>
|
|
<p>chart update interval (ms): <select id="chartUpd" onchange="location.reload()">
|
|
<option>200</option>
|
|
<option selected>500</option>
|
|
<option>1000</option>
|
|
</select></p>
|
|
<p>data update interval (ms): <select id="upd" onload="getUpdateInterval()" onchange="setUpdateInterval()">
|
|
<option>10</option>
|
|
<option>20</option>
|
|
<option>50</option>
|
|
<option>100</option>
|
|
<option>200</option>
|
|
<option selected>500</option>
|
|
<option>1000</option>
|
|
</select></p>
|
|
<button id="startRec" onclick="startRecording()">Start recording</button>
|
|
<button id="stopRec" onclick="stopRecording()">Stop recording</button>
|
|
<table>
|
|
<tr>
|
|
<td class="chart-container">
|
|
<h2>Channel A:</h2>
|
|
<div id="error-tempA"></div>
|
|
<canvas id="chartA"></canvas>
|
|
</td>
|
|
<td class="chart-container">
|
|
<h2>Channel B:</h2>
|
|
<div id="error-tempB"></div>
|
|
<canvas id="chartB"></canvas>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|