From 9e6e813b4ccb90d30f7af92644308be119add202 Mon Sep 17 00:00:00 2001 From: Skylar Grant Date: Mon, 13 Nov 2023 18:32:43 -0500 Subject: [PATCH] Removed on/off time display --- www/views/index.html | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/www/views/index.html b/www/views/index.html index c597851..349a169 100644 --- a/www/views/index.html +++ b/www/views/index.html @@ -21,22 +21,18 @@
- - - -
Auger On Time
Feed Rate Off Time
@@ -116,16 +112,12 @@ // Get the elements we need to update const statusTable = document.getElementById('status-table'); 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 feedRateSelect = document.getElementById('feed-rate-select'); // console.log(config); augerStatus.innerHTML = parseStatus(config.status.auger); - augerOn.innerHTML = config.intervals.augerOn; - augerOff.innerHTML = config.intervals.augerOff; switch (config.intervals.augerOn) { case '500':