1.IoT雲端開發
- 開通物聯網套件 www.aliyun.com/product/iot
- =>產品管理>建立產品
- =>產品管理>產品詳情>裝置管理>新增裝置
- =>產品管理>產品詳情>裝置管理>新增自定義屬性 tag,imei
屬性名key | 屬性值value | 描述 |
---|---|---|
tag | 西溪園區 1-2-56 | 自定義裝置位置 |
imei | XIXI2018034532 | 自定義裝置序列號 |
- =>產品管理>產品詳情>訊息通訊
Topic
|
許可權
|
描述
|
/productKey/${deviceName}/data
|
釋出
|
上報資料
payload示例 {"temperature":23,"humidity":63}
|
/productKey/${deviceName}/control
|
訂閱
|
下行指令
payload示例 {"device": "iotLed","state": "on"}
|
2. 函式計算開發
2.1 開通函式計算服務
開通FC函式計算服務www.aliyun.com/product/fc
2.2. 建立__Nodejs函式__
- 建立服務 __IoT_Service __
- 建立函式 pushData2Dingtalk
- 函式指令碼如下:
const https = require('https');
//釘釘群機器人token
const accessToken = '此處是釘釘群機器人的token';
module.exports.handler = function(event, context, callback) {
var eventJson = JSON.parse(event.toString());
const postData = JSON.stringify({
"msgtype": "markdown",
"markdown": {
"title": "溫溼度感測器",
"text": "#### 溫溼度感測器上報\n" +
"> 裝置位置:" + eventJson.tag + "\n\n" +
"> 裝置編號:" + eventJson.imei+ "\n\n" +
"> 實時溫度:" + eventJson.temperature + "℃\n\n" +
"> 相對溼度:" + eventJson.humidity + "%\n\n" +
"> ###### " + eventJson.time + " 釋出 by [物聯網套件](https://www.aliyun.com/product/iot) \n"
},
"at": {
"isAtAll": false
}
});
const options = {
hostname: 'oapi.dingtalk.com',
port: 443,
path: '/robot/send?access_token='+accessToken,
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Content-Length': Buffer.byteLength(postData)
}
};
const req = https.request(options, (res) => {
res.setEncoding('utf8');
res.on('data', (chunk) => {});
res.on('end', () => {
callback(null, 'success');
});
});
req.on('error', (e) => {
callback(e);
});
// 寫入資料請求主體
req.write(postData);
req.end();
};
複製程式碼
3. IoT套件-規則引擎設定
3.1 欄位
deviceName() as deviceName ,
timestamp('yyyy-MM-dd HH:mm:ss') as time,
attribute('tag') as tag,attribute('imei') as imei,
humidity, temperature
複製程式碼
3.2 Topic
產品/+/data +萬用字元,代表產品下全量裝置都使用這個規則
複製程式碼
3.3 完整資料操作
3.4 轉發動作-函式計算
3.5 啟動規則引擎
4. 裝置端開發
4.1 模擬裝置開發
模擬裝置的nodejs指令碼iot-fc-dingtalk.js
/**
* package.json 新增依賴:"aliyun-iot-mqtt": "0.0.4"
*/
const mqtt = require('aliyun-iot-mqtt');
//裝置三元組
const options = {
productKey: "產品",
deviceName: "裝置",
deviceSecret: "祕鑰",
regionId: "cn-shanghai"
};
//裝置與雲 建立連線,裝置上線
const client = mqtt.getAliyunIotMqttClient(options);
//主題topic
const topic = `${options.productKey}/${options.deviceName}/data`;
const data = {
temperature: Math.floor((Math.random()*20)+10),
humidity: Math.floor((Math.random()*100)+20),
};
//指定topic釋出資料到雲端
client.publish(topic, JSON.stringify(data));
const subTopic = "/" + options.productKey + "/" + options.deviceName + "/control";
//訂閱topic
client.subscribe(subTopic)
//新增topic處理函式
client.on('message', function (topic, message){
console.log(topic + "," + message.toString())
})
複製程式碼
啟動虛擬裝置指令碼
$node iot-fc-dingtalk.js
複製程式碼
4.2 真實開發板開發
- 建立資料夾 mkdir ali-iot-client
- 進入資料夾 cd ali-iot-client
- 建立工程 rap init
- 新增硬體和驅動 rap device add humirature
- 裝置型號 DHT11
- 在package.json中增加iot的sdk包 aliyun-iot-device-mqtt
"ruff": {
"dependencies": {
"aliyun-iot-device-mqtt": "^0.0.5",
},
"version": 1
}
複製程式碼
- 安裝依賴 rap install
- 安裝完目錄結構如下:
- 編寫業務邏輯 /src/index.js
// 引入aliyun-iot-sdk
var MQTT = require('aliyun-iot-device-mqtt');
// 個人賬號
var options = {
productKey: "",//替換為自己的
deviceName: "",//替換為自己的
deviceSecret: "",//替換為自己的
regionId: "cn-shanghai",//華東2
};
// 釋出/訂閱 topic
var pubTopic = "/" + options.productKey + "/" + options.deviceName + "/data";
var subTopic = "/" + options.productKey + "/" + options.deviceName + "/control";
// 建立連線
var client = MQTT.createAliyunIotMqttClient(options);
$.ready(function(error) {
if (error) {
console.log(error);
return;
}
//10s上報一次
setInterval(publishData, 15 * 1000);
//訂閱topic
client.subscribe(subTopic)
//新增topic處理函式
client.on('message', doHandler)
});
//上報溫溼度
function publishData() {
$('#humirature').getTemperature(function(error, temperature) {
if (error) {
console.error(error);
return;
}
$('#humirature').getRelativeHumidity(function(error, humidity) {
if (error) {
console.error(error);
return;
}
var data = {
"temperature": temperature,//溫度
"humidity": humidity //溼度
};
console.log(JSON.stringify(data))
//釋出topic,上報資料
client.publish(pubTopic, JSON.stringify(data));
});
});
}
//接收topic,處理下行指令
function doHandler(topic, message) {
console.log(topic + "," + message.toString())
if (topic === subTopic) {
var msgJson = JSON.parse(message.toString());
//state為on,那麼開啟led-r燈
if (msgJson.state === 'on') {
$('#led-r').turnOn();
} else {
$('#led-r').turnOff();
}
}
}
複製程式碼
- 硬體接線方式檢視 rap layout --visual
- 裝置上電,連線Ruff_Rxxxxx的wifi,部署應用程式 rap deploy -s
5. 釘釘群收到推送
6.下發指令
- 通過IoT套件控制檯下發指令 /{productKey}/+/control
//on開燈
{"device": "iotLed","state": "on"}
//off關燈
{"device": "iotLed","state": "off"}
複製程式碼
裝置管理 》裝置》Topic列表