Move location of GPIO init
This commit is contained in:
parent
6bd49f1c33
commit
e3e22b61be
@ -5,9 +5,6 @@ const fs = require('fs');
|
|||||||
// Setup for use with the Pi's GPIO pins
|
// Setup for use with the Pi's GPIO pins
|
||||||
const gpio = require('rpi-gpio');
|
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, functions.auger.ready());
|
|
||||||
|
|
||||||
// The functions we'll export to be used in other files
|
// The functions we'll export to be used in other files
|
||||||
const functions = {
|
const functions = {
|
||||||
auger: {
|
auger: {
|
||||||
@ -100,5 +97,7 @@ const functions = {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Set up GPIO 4 (pysical pin 7) as output, then call functions.auger.ready()
|
||||||
|
gpio.setup(7, gpio.DIR_OUT, functions.auger.ready());
|
||||||
|
|
||||||
module.exports = { functions }
|
module.exports = { functions }
|
Loading…
Reference in New Issue
Block a user