This commit is contained in:
Skylar Grant 2022-11-26 22:14:18 -05:00
parent e3250320da
commit e3ace6c862
1 changed files with 3 additions and 0 deletions

View File

@ -12,6 +12,9 @@ console.log(`ONTIME=${process.env.ONTIME}\nOFFTIME=${process.env.OFFTIME}\nPAUSE
// Set up GPIO 4 (pysical pin 7) as output, then call cycleAuger()
gpio.setup(7, gpio.DIR_OUT, cycleAuger);
// TODO Move functions to another file for cleaner code
// TODO Add logic for other sensors
// Turns the auger on (Pin 7 high)
function augerOn(err) {
if (err) throw err;