From a673b15ab9c81ea87a162ecafea452fa7f9b0b20 Mon Sep 17 00:00:00 2001 From: Skylar Grant Date: Sun, 22 Jan 2023 13:18:43 -0500 Subject: [PATCH] Move variable --- main.js | 3 --- modules/functions.js | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) 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');