Removed on/off time display

This commit is contained in:
Skylar Grant 2023-11-13 18:32:43 -05:00
parent ac1848c48e
commit 9e6e813b4c
1 changed files with 2 additions and 10 deletions

View File

@ -21,22 +21,18 @@
</div> </div>
<div id="status" class="row"> <div id="status" class="row">
<!-- <!--
| Auger | rows[0].cells[1] | On Time | rows[0].cells[3] | | Auger | rows[0].cells[1]
| Feed Rate | rows[1].cells[1] | Off Time | rows[1].cells[3] | | Feed Rate | rows[1].cells[1]
--> -->
<table id="status-table" class="table table-bordered col-sm-12 col-md-6"> <table id="status-table" class="table table-bordered col-sm-12 col-md-6">
<tr> <tr>
<td>Auger</td> <td>Auger</td>
<td></td> <td></td>
<td>On Time</td>
<td></td>
</tr> </tr>
<tr> <tr>
<td>Feed Rate</td> <td>Feed Rate</td>
<td></td> <td></td>
<td>Off Time</td>
<td></td>
</tr> </tr>
</table> </table>
</div> </div>
@ -116,16 +112,12 @@
// Get the elements we need to update // Get the elements we need to update
const statusTable = document.getElementById('status-table'); const statusTable = document.getElementById('status-table');
const augerStatus = statusTable.rows[0].cells[1]; const augerStatus = statusTable.rows[0].cells[1];
const augerOn = statusTable.rows[0].cells[3];
const augerOff = statusTable.rows[1].cells[3];
const feedRate = statusTable.rows[1].cells[1]; const feedRate = statusTable.rows[1].cells[1];
const feedRateSelect = document.getElementById('feed-rate-select'); const feedRateSelect = document.getElementById('feed-rate-select');
// console.log(config); // console.log(config);
augerStatus.innerHTML = parseStatus(config.status.auger); augerStatus.innerHTML = parseStatus(config.status.auger);
augerOn.innerHTML = config.intervals.augerOn;
augerOff.innerHTML = config.intervals.augerOff;
switch (config.intervals.augerOn) { switch (config.intervals.augerOn) {
case '500': case '500':