mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
parent
e95d4a9010
commit
4b73a92f71
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user