我已经按照在线指南来设置johnny-five和particle-io,我认为现在一切正常。如果我运行node process.env
,我可以看到我的DEVICE_ID和DEVICE_TOKEN。我在节点上运行了我在this指南中找到的示例代码,我得到的是
我希望命令提示符输出
的结果console.log("accelerometer");
console.log(" x : ", this.x);
console.log(" y : ", this.y);
console.log(" z : ", this.z);
console.log(" pitch : ", this.pitch);
console.log(" roll : ", this.roll);
console.log(" acceleration : ", this.acceleration);
console.log(" inclination : ", this.inclination);
console.log(" orientation : ", this.orientation);
console.log("--------------------------------------");
但我想我可能错了?如果是的话,我会在哪里看到输出?这是我第一次使用jonny-5和node,所以很抱歉,如果它有点困惑..
答案 0 :(得分:0)
我没有使用johnny-five设置处理粒子,但我可以指导您如何从粒子仪表板上的传感器MPU-6050获取值。
您可以使用MPU-6000的这个代码,它与您正在使用的MPU-6050相同,并在粒子构建中闪烁一下,并检查粒子仪表板上的输出。
https://github.com/ControlEverythingCommunity/MPU-6000/blob/master/Particle/MPU-6000.ino
有关如何操作的更多详细信息,您还可以查看视频,该视频将显示i2c传感器与网络仪表板上的粒子和数据的接口。