|
| 1 | +# 远程配置 |
| 2 | + |
| 3 | +本文档介绍通过 MQTT 对产品设备进行远程配置的功能,并结合 SDK 的**remote_config_mqtt_sample**展示远程配置功能。 |
| 4 | + |
| 5 | +## 一. 控制台创建设备 |
| 6 | + |
| 7 | +#### 1. 背景介绍 |
| 8 | + |
| 9 | +设备运维阶段,需要对设备配置参数进行更新以满足现场使用环境的需求。 |
| 10 | +如温湿度设备需要更改温湿度上下限的设置;modbus 网关设备需要更改串口参数及 modbus 参数信息;zigbee 网关需要更改 zigbee 配置参数信息等等。 |
| 11 | +* 配置推送 topic 和配置请求响应 topic: `$config/update/${productID}/${deviceName}` |
| 12 | +* 配置请求 topic: `$config/report/${productID}/${deviceName}` |
| 13 | + |
| 14 | +#### 2. 远程配置流程图 |
| 15 | + |
| 16 | +##### 2.1 云平台主动下发配置流程 |
| 17 | + |
| 18 | + |
| 19 | + |
| 20 | +##### 2.2 设备主动请求配置更新 |
| 21 | + |
| 22 | + |
| 23 | + |
| 24 | +#### 3. 创建产品和设备 |
| 25 | + |
| 26 | +请参考[设备互通](https://cloud.tencent.com/document/product/634/11913) 创建 AirConditioner 空调产品和设备标题内容。 |
| 27 | +创建 airConditioner1 空调设备。 |
| 28 | + |
| 29 | +## 二. 编译运行示例程序(以**密钥认证设备**为例) |
| 30 | + |
| 31 | +#### 1. 编译 SDK |
| 32 | + |
| 33 | +修改CMakeLists.txt确保以下选项存在 |
| 34 | +``` |
| 35 | +set(BUILD_TYPE "release") |
| 36 | +set(COMPILE_TOOLS "gcc") |
| 37 | +set(PLATFORM "linux") |
| 38 | +set(FEATURE_REMOTE_CONFIG_MQTT_ENABLED ON) |
| 39 | +set(FEATURE_AUTH_MODE "KEY") |
| 40 | +set(FEATURE_AUTH_WITH_NOTLS OFF) |
| 41 | +set(FEATURE_DEBUG_DEV_INFO_USED OFF) |
| 42 | +``` |
| 43 | +执行脚本编译 |
| 44 | +``` |
| 45 | +./cmake_build.sh |
| 46 | +``` |
| 47 | +示例输出 `remote_config_mqtt_sample` 位于 `output/release/bin` 文件夹中 |
| 48 | + |
| 49 | +#### 2. 填写设备信息 |
| 50 | + |
| 51 | +将上面创建的 airConditioner1 设备的设备信息填写到JSON文件 aircond_device_info1.json 中: |
| 52 | +``` |
| 53 | +{ |
| 54 | + "auth_mode":"KEY", |
| 55 | + "productId":"YI7XCD5DRH", |
| 56 | + "deviceName":"airConditioner1", |
| 57 | + "key_deviceinfo":{ |
| 58 | + "deviceSecret":"+PBSkYlvNffjLDTGLpVOQA==" |
| 59 | + } |
| 60 | +} |
| 61 | +``` |
| 62 | + |
| 63 | +#### 3. 执行`remote_config_mqtt_sample`示例程序 |
| 64 | + |
| 65 | +可以看到设备 airConditioner1 订阅了远程配置消息。 |
| 66 | + |
| 67 | +``` |
| 68 | +./output/release/bin/remote_config_mqtt_sample -l |
| 69 | +INF|2020-08-26 19:31:03|qcloud_iot_device.c|iot_device_info_set(50): SDK_Ver: 3.2.1, Product_ID: YI7XCD5DRH, Device_Name: airConditioner1 |
| 70 | +DBG|2020-08-26 19:31:03|HAL_TLS_mbedtls.c|HAL_TLS_Connect(200): Setting up the SSL/TLS structure... |
| 71 | +DBG|2020-08-26 19:31:03|HAL_TLS_mbedtls.c|HAL_TLS_Connect(242): Performing the SSL/TLS handshake... |
| 72 | +DBG|2020-08-26 19:31:03|HAL_TLS_mbedtls.c|HAL_TLS_Connect(243): Connecting to /YI7XCD5DRH.iotcloud.tencentdevices.com/8883... |
| 73 | +INF|2020-08-26 19:31:03|HAL_TLS_mbedtls.c|HAL_TLS_Connect(265): connected with /YI7XCD5DRH.iotcloud.tencentdevices.com/8883... |
| 74 | +INF|2020-08-26 19:31:03|mqtt_client.c|IOT_MQTT_Construct(118): mqtt connect with id: 9AEwi success |
| 75 | +INF|2020-08-26 19:31:03|remote_config_mqtt_sample.c|main(300): Cloud Device Construct Success |
| 76 | +DBG|2020-08-26 19:31:03|mqtt_client_subscribe.c|qcloud_iot_mqtt_subscribe(142): topicName=$config/update/YI7XCD5DRH/airConditioner1|packet_id=13502 |
| 77 | +INF|2020-08-26 19:31:03|remote_config_mqtt_sample.c|_mqtt_event_handler(128): subscribe success, packet-id=13502 |
| 78 | +DBG|2020-08-26 19:31:03|remote_config_mqtt.c|_config_mqtt_sub_event_handler(156): mqtt config topic subscribe success |
| 79 | +INF|2020-08-26 19:31:03|remote_config_mqtt_sample.c|main(315): config topic subscribe success, packetid:13502 |
| 80 | +``` |
| 81 | + |
| 82 | +##### 3.1 设备订阅远程配置函数 |
| 83 | + |
| 84 | +``` |
| 85 | +int IOT_Subscribe_Config(void *client, ConfigSubscirbeUserData *config_sub_userdata, int subscribe_timeout) |
| 86 | +``` |
| 87 | + |
| 88 | +#### 4. 云平台上给产品添加远程配置内容 |
| 89 | + |
| 90 | +点击 AirConditioner 产品的管理按钮,然后点击远程配置选项卡添加远程配置内容保存和启用远程配置 |
| 91 | + |
| 92 | + |
| 93 | +#### 5. 观察设备主动请求配置更新 |
| 94 | + |
| 95 | +观察设备 airConditioner1 的打印输出,可以看到设备发布获取配置消息并收到了云平台的下行配置回复。 `Recv Msg Topic:$config/update/YI7XCD5DRH/airConditioner1` `"type":"reply"` |
| 96 | + |
| 97 | +配置信息是 `{"baud rate":9600,"data bits":8,"stop bit":1,"parity":"NONE","thread sleep":1000}` |
| 98 | +``` |
| 99 | +DBG|2020-08-26 19:31:03|mqtt_client_publish.c|qcloud_iot_mqtt_publish(340): publish packetID=0|topicName=$config/report/YI7XCD5DRH/airConditioner1|payload={"type":"get"} |
| 100 | +DBG|2020-08-26 19:31:08|remote_config_mqtt.c|_config_mqtt_message_callback(90): Recv Msg Topic:$config/update/YI7XCD5DRH/airConditioner1, buff data:{ |
| 101 | + "type":"reply", |
| 102 | + "result":0, |
| 103 | + "payload": {"baud rate":9600,"data bits":8,"stop bit":1,"parity":"NONE","thread sleep":1000} |
| 104 | +} |
| 105 | +INF|2020-08-26 19:31:08|remote_config_mqtt_sample.c|_on_config_proc_handler(94): config message arrived , proc result: 9600, 8, 0, 1, 1000 |
| 106 | +INF|2020-08-26 19:31:08|remote_config_mqtt_sample.c|_on_config_proc_handler(96): config message arrived , configData: {"baud rate":9600,"data bits":8,"stop bit":1,"parity":"NONE","thread sleep":1000} |
| 107 | +
|
| 108 | +``` |
| 109 | + |
| 110 | +##### 5.1 设备主动请求配置更新函数 |
| 111 | + |
| 112 | +``` |
| 113 | +int IOT_Get_Config(void *client, char *json_buffer, int buffer_size, int reply_timeout) |
| 114 | +``` |
| 115 | + |
| 116 | +#### 6. 观察云平台主动下发配置 |
| 117 | + |
| 118 | +观察设备 airConditioner1 的打印输出,可以看到已经处理了远程配置下行消息。 `Recv Msg Topic:$config/update/YI7XCD5DRH/airConditioner1` `"type":"push"` |
| 119 | + |
| 120 | +配置信息是 `{"baud rate":115200,"data bits":8,"stop bit":1,"parity":"NONE","thread sleep":1000}` |
| 121 | + |
| 122 | +``` |
| 123 | +DBG|2020-08-26 19:31:30|remote_config_mqtt.c|_config_mqtt_message_callback(90): Recv Msg Topic:$config/update/YI7XCD5DRH/airConditioner1, payload:{ |
| 124 | + "type":"push", |
| 125 | + "payload": {"baud rate":115200,"data bits":8,"stop bit":1,"parity":"NONE","thread sleep":1000} |
| 126 | +} |
| 127 | +INF|2020-08-26 19:31:30|remote_config_mqtt_sample.c|_on_config_proc_handler(44): config message arrived , configData: {"baud rate":115200,"data bits":8,"stop bit":1,"parity":"NONE","thread sleep":1000} |
| 128 | +INF|2020-08-26 19:31:30|remote_config_mqtt_sample.c|_on_config_proc_handler(96): config message arrived , proc end: 115200, 8, 0, 1, 1000 |
| 129 | +
|
| 130 | +``` |
| 131 | + |
| 132 | +#### 7. 云平台远程配置下行结果码 result 字段说明 |
| 133 | + |
| 134 | +| 结果码 | 说明 | |
| 135 | +|--------|----------------------------------| |
| 136 | +| 0 | 远程配置获取成功 | |
| 137 | +| 1001 | 产品在云平台上的远程配置被禁用 | |
| 138 | +| 1002 | 产品在云平台上不存在远程配置内容 | |
| 139 | +| 1003 | 产品在云平台上的远程配置不合法 | |
| 140 | + |
| 141 | +***至此,完成了远程配置的示例运行*** |
| 142 | + |
| 143 | +使用远程配置功能时,参考例子程序,修改 `_on_config_proc_handler` 函数适配实际设备的配置解析与更新。 |
0 commit comments