我正在使用Arduino Uno,Node.js和Johnny-Five参与我的一个项目。当我尝试运行code below时,一切正常,我从传感器获得反馈。 几秒钟后,Node.js停止不给我任何理由。我测试了Ubuntu上的代码,Node无限运行,但没有在Windows 7上运行。你知道任何故障排除技术可以帮助我找出原因吗Node.js停止了吗?非常感谢。
var five = require("johnny-five");
var board = new five.Board();
board.on("ready", function() {
// Create a new `ping` hardware instance.
var ping = new five.Ping(7);
// ping.in
//
// Calculated distance to obstruction in inches
//
// ping.cm
//
// Calculated distance to obstruction in centimeters
//
ping.on("change", function(err, value) {
console.log("Object is " + this.in + "inches away");
});
});