WLG/doc/wave_filter.jsonc

69 lines
1.5 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 更新全部配置的内容
{
"partial": false, // 如果提交全部的话此项为false提交部分的话此项为true
"global": [1, 1, 1],
"3259": [0, 1, 0],
"4123": [1, 1, 0],
"4326": [1, 1, 0]
}
// 更新部分配置的内容
{
"partial": true, // 如果提交全部的话此项为false提交部分的话此项为true
"4326": [1, 1, 0]
}
// 获取特征值配置内容
// 请求
{
"cmd": "63",
"sub_cmd": 0 // 0:获取,1:设置
}
// 响应
{
"cmd": "63",
"success": true,
"sub_cmd": 0, // 0:获取,1:设置
"cmdBody": {
"global": [1, 1, 1],
"3259": [0, 1, 0],
"4123": [1, 1, 0],
"4326": [1, 1, 0]
}
}
// 请求
// 设置特征值配置内容-全部
{
"cmd": "63",
"sub_cmd": 1, // 0:获取,1:设置
"cmdBody": {
"partial": false,
"global": [1, 1, 1],
"3259": [0, 1, 0],
"4123": [1, 1, 0],
"4326": [1, 1, 0]
}
}
// 设置部分
{
"cmd": "63",
"sub_cmd": 1, // 0:获取,1:设置
"cmdBody": {
"partial": true, // 当设置部分时,只能提交一条记录
"4326": [1, 1, 0]
}
}
// 响应
{
"cmd": "63",
"sub_cmd": 1, // 0:获取,1:设置
"success": true
}
使"64"