fixup pilter and pisrf for python2/3

This commit is contained in:
Dave Conway-Jones 2021-06-18 08:56:15 +01:00
parent 7c4b2593ba
commit 290b2ea790
No known key found for this signature in database
GPG Key ID: 88BA2B8A411BE9FF
4 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ module.exports = function(RED) {
var spawn = require('child_process').spawn;
var fs = require('fs');
var gpioCommand = __dirname+'/nrgpio.py';
var gpioCommand = __dirname+'/nrgpio';
var allOK = true;
try {

View File

@ -1,6 +1,6 @@
{
"name" : "node-red-node-piliter",
"version" : "0.0.15",
"version" : "0.0.16",
"description" : "A Node-RED node to drive a Raspberry Pi Pi-LITEr 8 LED board.",
"dependencies" : {
},

View File

@ -1,6 +1,6 @@
{
"name" : "node-red-node-pisrf",
"version" : "0.1.5",
"version" : "0.1.6",
"description" : "A Node-RED node for a Raspberry Pi to use a SRF04 or SRF05 range finder",
"dependencies" : {
},

View File

@ -5,7 +5,7 @@ module.exports = function(RED) {
var spawn = require('child_process').spawn;
var fs = require('fs');
var gpioCommand = __dirname + '/nrsrf.py';
var gpioCommand = __dirname + '/nrsrf';
var allOK = true;
try {