我安装了本地Thingsboard CE,并且可以通过TB网关从Modbus设备读取数据。但是,数据上传只是按时间顺序进行的,我不需要存储这些数据,只需获取在线信息即可。
在modbus-config.json中,它们定义为:
"attributes": [ { "tag": "X", "type": "boolean", "functionCode": 1, "address": 0 },
"timeseries": [ { "tag": "Y", "type": "boolean", "functionCode": 2, "address": 1 } ]
因此,我希望有1个属性和1个时间序列,但是两个数据值都是作为时间序列出现的,它们都存储在DB中。
我该如何解决?