0

我已经按照在线指南设置了 johnny-5 和particle-io,我认为现在一切正常。如果我运行,node process.env我可以看到我的 DEVICE_ID 和 DEVICE_TOKEN。我使用节点运行我在指南中找到的示例代码,我得到的是这不是我的设备 ID!

我期待命令提示符输出结果

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 的第一次体验,如果有点困惑,很抱歉..

4

1 回答 1

0

我没有使用 johnny-5 设置处理粒子,但我可以指导您如何从粒子仪表板上的传感器 MPU-6050 获取值。

您可以使用与您正在使用的 MPU-6050 相同的 MPU-6000 代码,并在粒子构建中闪烁此代码并检查粒子仪表板上的输出。

https://github.com/ControlEverythingCommunity/MPU-6000/blob/master/Particle/MPU-6000.ino

有关如何执行此操作的更多详细信息,您还可以观看视频,该视频将显示传感器的 i2c 接口与 Web 仪表板上的粒子和数据。

https://www.youtube.com/watch?v=-_DfUd9Ug9w。我希望它能解决您的问题。

于 2016-04-20T08:50:46.643 回答