gpt4 book ai didi

javascript - Meteor 1.5、johnny- Five、串口连接错误

转载 作者:行者123 更新时间:2023-12-03 04:10:53 25 4
gpt4 key购买 nike

我需要有关 Meteor 1.5、johnny- Five、串行端口的帮助。

我使用的是 MacOS。我正在遵循本指南 https://github.com/studiorabota/meteor-johnny-five-tutorial

由于新的 Meteor 版本和对 NPM 的支持,我对代码做了一些更改。

我的NodeJs版本v4.6.2

问题是 Meteor 连接到了错误的串口。以下是我运行“meteor”时的错误消息:

Available /dev/cu.usbmodem1,/dev/cu.usbserial-A5029U59

Connected /dev/cu.usbmodem1

我需要知道如何让 Meteor 选择正确的端口。请帮忙,提前致谢。

我的 Meteor package.json

{
"name": "j5",
"private": true,
"scripts": {
"start": "meteor run"
},
"dependencies": {
"babel-runtime": "^6.20.0",
"johnny-five": "^0.11.1",
"meteor-node-stubs": "~0.2.4",
"serialport": "^4.0.7"
}
}

我的 server/blink.js

// import johnny-five from 'johnny-five';

var JohnnyFive = require("johnny-five");

Meteor.startup(function(){
board = new JohnnyFive.Board();

board.on('error', function (error) {
console.error('Johnny Five Error', error);
});

board.on("ready", Meteor.bindEnvironment(function() {

var led = new JohnnyFive.Led(13);

led.blink(500);

}, "ready"));
});

最佳答案

您可以告诉 johnny- Five 使用哪个串行端口:

board = new JohnnyFive.Board({ port : '/dev/cu.usbserial-A5029U59' })

更多信息请点击:http://johnny-five.io/api/board/#component-initialization

关于javascript - Meteor 1.5、johnny- Five、串口连接错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44343526/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com