Remove erroneous await

This commit is contained in:
Skylar Grant 2022-12-03 18:13:32 -05:00
parent 0cd0c92809
commit 2606a5258f
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ const dotenv = require('dotenv').config();
// TODO Add logic for other sensors // TODO Add logic for other sensors
while (true) { 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. // Main function, turns the auger on, sleeps for the time given in environment variables, then turns the auger off, sleeps, repeats.