Appearance
灯具管理
一. 灯具更新
1. topic
res/light/update
2. payload
json
[
{
"device_id": "10E48D35-0ABD-47EB-BA4B-C150D68C4B23",
"id": "8BAD2C8A-38BE-41CB-A4D3-563B5C7E9C03",
"value": {
"brightness": 74,
"color_arr": [
{
"x": 26839,
"y": 28098
},
{
"x": 22993,
"y": 29119
},
{
"x": 21025,
"y": 24022
},
{
"x": 18600,
"y": 24633
},
{
"x": 10591,
"y": 23416
}
],
"color_len": 5
}
}
]
3. 字段说明
序号 | 字段 | 类型 | 说明 |
---|---|---|---|
1 | id | string | 灯具的ID |
2 | device_id | string | 设备的ID |
3 | value | object | 有更新的字段 |
value对象
序号 | 字段 | 类型 | 说明 |
---|---|---|---|
1 | on | int | 开关, 1开, 0关 |
2 | brightness | int | 亮度, 范围 0 - 100 |
3 | color_mode | int | 颜色模式, 1xy, 2cw, 3xy array |
4 | color_x | int | xy模式时的 x值, 范围 1 - 65535 |
5 | color_y | int | xy模式时的 y值, 范围 1 - 65535 |
6 | color_cw | int | cw模式时的 cw值, 范围 2000 - 6500 |
7 | color_arr | object array | xy array模式时的 xy数组 |
7.[].1 | x | int | x值 |
7.[].2 | y | int | y值 |
8 | sync_status | int | 灯具是否在同步中, 1是, 0否 |
9 | position_x | int | BweeApp专用, 色盘中的x坐标 |
10 | position_y | int | BweeApp专用, 色盘中的y坐标 |
11 | positions | string | BweeApp专用, 分段色时, 多个坐标 |
12 | pack | string array | BweeApp专用, 多个灯组合在一起 |
4. 功能说明
- 在灯具信息变更时, 会触发此 topic
- value对象中, key存在代表有更新, key不存在代表未更新