This commit is contained in:
Skylar Grant 2022-11-26 19:35:03 -05:00
parent 1800013ebc
commit 4846bee1c0
1 changed files with 5 additions and 1 deletions

View File

@ -34,9 +34,13 @@ function sleep(ms) {
}); });
} }
while (true) { async function cycleAuger() {
augerOn(); augerOn();
await sleep(500); await sleep(500);
augerOff(); augerOff();
await sleep(800); await sleep(800);
}
while (true) {
cycleAuger();
} }