读写

读 Tag

POST /api/v2/read

请求头部

Content—Type application/json

Authorization Bearer <token>

响应状态

  • 200

请求体

  1. {
  2. //node name
  3. "node": "modbus-tcp-1",
  4. //group name
  5. "group": "config_modbus_tcp_sample_2"
  6. }

响应

  1. {
  2. "tags": [
  3. {
  4. //tag nmae
  5. "name": "data1",
  6. //tag value
  7. "value": 1,
  8. },
  9. {
  10. "name": "data2",
  11. "error": 2014
  12. },
  13. {
  14. "name": "data3",
  15. "value": true,
  16. }
  17. ]
  18. }

提示

当某个点位读数值出错时,将显示 error 字段,不再显示 value 字段。

写 Tag

POST /api/v2/write

请求头部

Content-Type application/json

Authorization Bearer <token>

响应状态

  • 200 OK

请求体

  1. {
  2. "node": "modbus-tcp-1",
  3. "group": "config_modbus_tcp_sample_2",
  4. "tag": "tag1",
  5. "value": 1234
  6. }

响应

  1. {
  2. "error": 0
  3. }