diff --git a/src/custom_modules/VoidGPIO.js b/src/custom_modules/VoidGPIO.js index 5e132d8..44deb2c 100644 --- a/src/custom_modules/VoidGPIO.js +++ b/src/custom_modules/VoidGPIO.js @@ -64,7 +64,7 @@ module.exports = { }, // Calls the GPIO Interface script to set a pin's state regardless of its current state setPin(pin, state, callback) { - exec(`python 3 src/python/gpio_interface.py set ${pin} ${state}`, (error, stdout, stderr) => { + exec(`python3 src/python/gpio_interface.py set ${pin} ${state}`, (error, stdout, stderr) => { if (error) { return callback(error); }