Fix interval selection
This commit is contained in:
parent
efd4c76997
commit
f90f45b401
|
@ -9,12 +9,15 @@
|
||||||
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
||||||
<h1>/* therminator */</h1>
|
<h1>/* therminator */</h1>
|
||||||
<p>last sensor update: <span id="time"></span></p>
|
<p>last sensor update: <span id="time"></span></p>
|
||||||
<p>chart update interval (ms): <select id="chartUpd" onchange="location.reload()">
|
<div id="du">
|
||||||
<option>200</option>
|
<p>current data update interval (ms): <span id="updInt"></span></p>
|
||||||
<option selected>500</option>
|
<p>
|
||||||
<option>1000</option>
|
set data update interval (ms):
|
||||||
</select></p>
|
<select
|
||||||
<p>data update interval (ms): <select id="upd" onload="getUpdateInterval()" onchange="setUpdateInterval()">
|
id="upd"
|
||||||
|
onchange="setUpdateInterval();"
|
||||||
|
onfocus="this.selectedIndex = -1;"
|
||||||
|
>
|
||||||
<option>10</option>
|
<option>10</option>
|
||||||
<option>20</option>
|
<option>20</option>
|
||||||
<option>50</option>
|
<option>50</option>
|
||||||
|
@ -22,20 +25,40 @@
|
||||||
<option>200</option>
|
<option>200</option>
|
||||||
<option selected>500</option>
|
<option selected>500</option>
|
||||||
<option>1000</option>
|
<option>1000</option>
|
||||||
</select></p>
|
</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 />
|
||||||
<button id="startRec" onclick="startRecording()">Start recording</button>
|
<button id="startRec" onclick="startRecording()">Start recording</button>
|
||||||
<button id="stopRec" onclick="stopRecording()">Stop recording</button>
|
<button id="stopRec" onclick="stopRecording()">Stop recording</button>
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="chart-container">
|
<td class="chart-container">
|
||||||
<h2>Channel A:</h2>
|
<h2>Channel A:</h2>
|
||||||
<label for="labelA">label: </label><input type="text" value="tempA" id="labelA">
|
<label for="labelA">label: </label
|
||||||
|
><input type="text" value="tempA" id="labelA" />
|
||||||
<div id="error-tempA"></div>
|
<div id="error-tempA"></div>
|
||||||
<canvas id="chartA"></canvas>
|
<canvas id="chartA"></canvas>
|
||||||
</td>
|
</td>
|
||||||
<td class="chart-container">
|
<td class="chart-container">
|
||||||
<h2>Channel B:</h2>
|
<h2>Channel B:</h2>
|
||||||
<label for="labelB">label: </label><input type="text" value="tempB" id="labelB">
|
<label for="labelB">label: </label
|
||||||
|
><input type="text" value="tempB" id="labelB" />
|
||||||
<div id="error-tempB"></div>
|
<div id="error-tempB"></div>
|
||||||
<canvas id="chartB"></canvas>
|
<canvas id="chartB"></canvas>
|
||||||
</td>
|
</td>
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
|
||||||
const canvasA = document.getElementById("chartA");
|
const canvasA = document.getElementById("chartA");
|
||||||
const canvasB = document.getElementById("chartB");
|
const canvasB = document.getElementById("chartB");
|
||||||
const chartUpdateInt = document.getElementById("chartUpd").value;
|
const chartUpdateInt = document.getElementById("chartUpd").value;
|
||||||
|
@ -82,6 +83,14 @@ const options = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fetch("/int")
|
||||||
|
.then((res) => res.text())
|
||||||
|
.then((textResponse) => {
|
||||||
|
document.getElementById("updInt").innerText = textResponse;
|
||||||
|
});
|
||||||
|
|
||||||
|
document.getElementById("cupdInt").innerText = chartUpdateInt;
|
||||||
|
|
||||||
const chartA = new Chart(canvasA, {
|
const chartA = new Chart(canvasA, {
|
||||||
type: "line",
|
type: "line",
|
||||||
data: {
|
data: {
|
||||||
|
@ -253,7 +262,7 @@ function startRecording() {
|
||||||
filename = "therminator-" + filedate + ".csv";
|
filename = "therminator-" + filedate + ".csv";
|
||||||
labelA = document.getElementById("labelA").value;
|
labelA = document.getElementById("labelA").value;
|
||||||
labelB = document.getElementById("labelB").value;
|
labelB = document.getElementById("labelB").value;
|
||||||
csvData = ["time,\"" + labelA + "\",\"" + labelB + "\""]
|
csvData = ['time,"' + labelA + '","' + labelB + '"'];
|
||||||
record = 1;
|
record = 1;
|
||||||
document.getElementById("startRec").disabled = true;
|
document.getElementById("startRec").disabled = true;
|
||||||
document.getElementById("stopRec").disabled = false;
|
document.getElementById("stopRec").disabled = false;
|
||||||
|
|
|
@ -5,9 +5,10 @@ body {
|
||||||
font-family: "IBM Plex Mono", monospace;
|
font-family: "IBM Plex Mono", monospace;
|
||||||
padding: 1rem 2rem;
|
padding: 1rem 2rem;
|
||||||
}
|
}
|
||||||
#mv,
|
#du,
|
||||||
#ui {
|
#cu {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
padding-right: 3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
#error-tempA,
|
#error-tempA,
|
||||||
|
@ -21,19 +22,3 @@ body {
|
||||||
width: 40vw;
|
width: 40vw;
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
}
|
}
|
||||||
#chart-small {
|
|
||||||
display: initial;
|
|
||||||
}
|
|
||||||
|
|
||||||
#chart-large {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width: 1480px) {
|
|
||||||
#chart-small {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
#chart-large {
|
|
||||||
display: initial;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue