Incorrect function path

This commit is contained in:
Skylar Grant 2022-12-03 18:22:25 -05:00
parent 9ef858cc94
commit 6bd49f1c33
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ const fs = require('fs');
const gpio = require('rpi-gpio');
// Set up GPIO 4 (pysical pin 7) as output, then call functions.auger.ready()
gpio.setup(7, gpio.DIR_OUT, this.functions.auger.ready);
gpio.setup(7, gpio.DIR_OUT, functions.auger.ready());
// The functions we'll export to be used in other files
const functions = {