Load current feed rate
This commit is contained in:
parent
e6bcf90741
commit
4daec6513d
@ -40,6 +40,7 @@ function refreshData() {
|
|||||||
const augerOn = document.getElementById('auger-on');
|
const augerOn = document.getElementById('auger-on');
|
||||||
const augerOff = document.getElementById('auger-off');
|
const augerOff = document.getElementById('auger-off');
|
||||||
const pauseInt = document.getElementById('pause-int');
|
const pauseInt = document.getElementById('pause-int');
|
||||||
|
const feedRate = document.getElementById('feed-rate');
|
||||||
|
|
||||||
// Get the config file
|
// Get the config file
|
||||||
const config = readJSON('./config.json');
|
const config = readJSON('./config.json');
|
||||||
@ -49,6 +50,7 @@ function refreshData() {
|
|||||||
augerOn.innerHTML = config.intervals.augerOn;
|
augerOn.innerHTML = config.intervals.augerOn;
|
||||||
augerOff.innerHTML = config.intervals.augerOff;
|
augerOff.innerHTML = config.intervals.augerOff;
|
||||||
pauseInt.innerHTML = config.intervals.pause;
|
pauseInt.innerHTML = config.intervals.pause;
|
||||||
|
feedRate.value = config.intervals.augerOn;
|
||||||
|
|
||||||
// Run this again after 2 seconds
|
// Run this again after 2 seconds
|
||||||
sleep(5000).then(() => {
|
sleep(5000).then(() => {
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<!-- Set feed rates -->
|
<!-- Set feed rates -->
|
||||||
<label for="feedRate">Feed Rate: </label>
|
<label for="feedRate">Feed Rate: </label>
|
||||||
<select name="feedRate">
|
<select name="feedRate" id="feed-rate">
|
||||||
<option value="600">Low</option>
|
<option value="600">Low</option>
|
||||||
<option value="800">Medium</option>
|
<option value="800">Medium</option>
|
||||||
<option value="1000">High</option>
|
<option value="1000">High</option>
|
||||||
|
Loading…
Reference in New Issue
Block a user