From 2606a5258f3d0f6d3a1502017cdaf805dbe8b8be Mon Sep 17 00:00:00 2001 From: Skylar Grant Date: Sat, 3 Dec 2022 18:13:32 -0500 Subject: [PATCH] Remove erroneous await --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 3af2495..639fdc1 100644 --- a/main.js +++ b/main.js @@ -7,7 +7,7 @@ const dotenv = require('dotenv').config(); // TODO Add logic for other sensors while (true) { - await main(); + main(); } // Main function, turns the auger on, sleeps for the time given in environment variables, then turns the auger off, sleeps, repeats.