來研究一下Intel CIOT (Intel® Commercial IoT Labs) https://software.intel.com/en-us/iot/documentation/comm-devkit-labs Building Edge Sensors and Actuators Application Protocols: MQTT and HTTP Databases at the Edge Custom Administrative Interfaces Automation on the Edge Network Building Edge Sensors and Actuators 延續之前的Edge device ex. Intel Edison Application Protocols: MQTT and HTTP 教怎麼安裝Node-RED 來講做操控並用Postman, a HTTP debugging tool 來做互動 Databases at the Edge 教你怎麼架一個Node-JS server 把MQTT接收到的資料寫到MogodoDB Install MongoDB and the MongooseJS database bindings Write a NodeJS server that listens to all sensor traffic over MQTT Write the collected sensor information to the database. 裡面還有用到一個 MongooseJS MongooseJS is an Object Data Manager that let’s you build JavaScript objects that can create, read, validate, update and remove entries from a MongoDB. 提示重點: Be sure that the sensor is publishing data and MongoDB is running, then start the server. 先確定有吐資料,然後把DB打開,再來MQTT接資料寫資料。 C...