我已经按照在线指南设置了 johnny-5 和particle-io,我认为现在一切正常。如果我运行,node process.env
我可以看到我的 DEVICE_ID 和 DEVICE_TOKEN。我使用节点运行我在本指南中找到的示例代码,我得到的是
我期待命令提示符输出结果
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 的第一次体验,如果有点困惑,很抱歉..