diff --git a/src/custom_modules/VoidGPIO.js b/src/custom_modules/VoidGPIO.js index 44deb2c..5920ded 100644 --- a/src/custom_modules/VoidGPIO.js +++ b/src/custom_modules/VoidGPIO.js @@ -75,7 +75,7 @@ module.exports = { }) }, // Boot up sanity check during debug mode - debugInit() { + async debugInit() { console.log('Resetting all output pins.'); pins.forEach(async (pin) => { if (pin.mode === 'OUT') { @@ -90,11 +90,13 @@ module.exports = { case 'OUT': this.togglePin(pin.board, err => { if (err) throw err; + console.log(`Toggled ${pin.key}`); }); // Wait 1000ms before toggling again. await sleep(1000); this.togglePin(pin.board, err => { if (err) throw err; + console.log(`Toggled ${pin.key}`); }); break; case 'IN':