thingsboard-gateway 上送共享属性
时间: 2023-09-21 15:09:09 浏览: 147
ThingsBoard Gateway 是一个用于将设备数据上传到 ThingsBoard IoT 平台的工具,它支持多种设备和协议,并提供了灵活的配置选项。要上送共享属性,需要在 Gateway 的配置文件中进行相关配置。
首先,在 `thingsboard-gateway/config/tb_gateway.yaml` 文件中添加以下内容:
```
# 配置共享属性
shared_attributes:
- attribute1
- attribute2
```
在上述配置中,`shared_attributes` 表示要上送的共享属性列表,可以根据需要添加或删除属性。然后,在 `thingsboard-gateway/config/devices.yaml` 文件中为设备配置共享属性:
```
devices:
- name: my_device
type: mqtt
...
attributes:
shared:
attribute1: 10
attribute2: true
```
在上述配置中,`attributes` 表示设备的属性列表,`shared` 表示要共享的属性,其中 `attribute1` 和 `attribute2` 分别表示要共享的属性名称,可以根据需要自定义属性名称和属性值。
完成上述配置后,ThingsBoard Gateway 将自动将共享属性上送到 ThingsBoard IoT 平台,可以在平台上查看设备的共享属性。
阅读全文