2016-03-02 114 views
0

我已經按照網上指南設置約翰尼五和顆粒-IO,我覺得一切都工作了。如果我運行node process.env,則可以看到我的DEVICE_ID和DEVICE_TOKEN。我與節點運行示例代碼我在this引導發現什麼,我得到的是and this is not my device ID!粒子光子約翰尼五粒子-IO接口

我期待在命令提示符下輸出的

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 setup設置粒子,但我可以指導你如何獲取值從粒子儀表板上的傳感器MPU-6050。

可以使用MPU-6000的這個代碼是一樣的,你使用的MPU-6050和閃存這樣一個粒子生成和檢查顆粒儀表板的輸出。

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

欲知詳情如何做到這一點,你也可以去通過將顯示與粒子和數據網絡信息中心傳感器的描繪I2C接口的視頻。

https://www.youtube.com/watch?v=-_DfUd9Ug9w.I希望解決您的問題。