实时监控家中环境数据,成果图:
1.硬件准备
2.技术架构
3.云端配置
产品模型定义
设备注册
设备接入点
4.硬件开发
硬件接线
程序目录结构
空气质量数据获取:
//空气质量数据
$('#air').on('aqi', function(error, pm25, pm10) {
if (error) {
console.log(error);
return;
}
reported.pm25 = pm25;
reported.pm10 = pm10;
});
温湿度数据获取:
//温度
$('#dht').getTemperature(function(error, temperature) {
console.log(error)
if (!error) {
reported.temperature = temperature;
}
});
//湿度
$('#dht').getRelativeHumidity(function(error, humidity) {
console.log(error)
if (!error) {
reported.humidity = humidity;
}
});
上报数据
设备连接华为IoT平台,按照profile文件约定 topic 和 payload 格式上报数据,参考代码如下:
//设备与华为云 IoT 平台建立连接
var client = huaweiIoT.getHuaweiIoTClient(options);
client.on('connect', function(connack) {
console.log('connect。。。'+JSON.stringify(connack))
});
var topic = '/huawei/v1/devices/'+options.deviceId+'/data/json'
setInterval(function() {
//定时上报数据
client.publish(topic, getData())
}, 5 * 1000);
查看云上数据
5.数据分析
配置数据源
创建资产视图
根据情况给子资产绑定传感器设备的实测点数据
配置虚测点平均温度,由多个房间温度实时数据取平均值获取
正式发布