diff --git a/main.js b/main.js index 0f9c5f0..621c233 100644 --- a/main.js +++ b/main.js @@ -1,7 +1,4 @@ const fn = require('./modules/functions.js').functions; -// TODO: Move these to config -// Physical Pin numbers for GPIO -const augerPin = 7; // Pin for controlling the relay for the pellet auger motor. // Import the config file var config = require('./templates/config.json'); // Database Functions diff --git a/modules/functions.js b/modules/functions.js index f1f7f03..716332b 100644 --- a/modules/functions.js +++ b/modules/functions.js @@ -1,4 +1,7 @@ // TODOs: Add tests for PoF and Vacuum switches, add delays for shutting down blower, test logic for igniter +// TODO: Move these to config +// Physical Pin numbers for GPIO +const augerPin = 7; // Pin for controlling the relay for the pellet auger motor. // Require the package for pulling version numbers const package = require('../package.json');