Cross platform fix for Arduino Serial port not there.

Fix for #428
This commit is contained in:
Dave C-J 2014-10-04 22:56:52 +01:00
parent e95d4a9010
commit 4b73a92f71
1 changed files with 6 additions and 8 deletions

View File

@ -20,6 +20,9 @@ module.exports = function(RED) {
var ArduinoFirmata = require('arduino-firmata');
var fs = require('fs');
var plat = require('os').platform();
var portlist = ArduinoFirmata.list(function (err, ports) {
portlist = ports;
});
// The Board Definition - this opens (and closes) the connection
function ArduinoNode(n) {
@ -29,15 +32,10 @@ module.exports = function(RED) {
//node.log("opening connection "+this.device);
var node = this;
node.board = new ArduinoFirmata();
if (!plat.match(/^win/)) { // not Windows
if (!fs.existsSync(node.device)) {
node.warn("Device "+node.device+" not found");
}
else {
node.board.connect(node.device);
}
if (portlist.indexOf(node.device) === -1) {
node.warn("Device "+node.device+" not found");
}
else { // Windows - try to connect anyway... this can be bad...
else {
node.board.connect(node.device);
}