Skip to content

LED显示屏控制

有时候,需要将动态内容下发给LED显示屏。比如实时的温度、工程进度信息等。

关于LED显示屏产品,请进入这里

使用命令

9030

携带数据

目前仅支持设置内码文字,下发该命令时,携带数据中,需包含资源id,格式为:

id,内容

比如:

1,湿度:58%

使用 | 分隔,可同时设定多个资源id:

比如:

1,研几科技|2,温度:23°

示例代码

python

import requests
import json


# 设备的agri_id
device_agri_id = "d-1000-xxx"

# 请求token
token = "hvduasqoqnbtscaiumzsgpjewxkrgupq"

url = "https://agri-dl.holdingbyte.com/api/command/"


payload = json.dumps({
  "t_agri_id": device_agri_id,
  "cmd_type": 9030,
  "cmd_value": "1,温度:23.5℃"
})

headers = {
  'token': token,
  'Content-Type': 'application/json'
}

response = requests.request("POST", url, headers=headers, data=payload)

print(response.text)