- 积分
- 766
- 金钱
- 611
- 威望
- 0
- 贡献
- 0
- HASS币
- 0
高级会员
- 积分
- 766
- 金钱
- 611
- HASS币
- 0
|
发表于 2021-1-8 14:24:54
|
显示全部楼层
大佬,问一下云仪开窗器我把代码弄出来了,关键piid和siid不会填,应该如何填写呢
{
type: "urn:miot-spec-v2:device:window-opener:0000A043:yyunyi-yypy24:1",
description: "Window Opener",
services: [
{
iid: 1,
type: "urn:miot-spec-v2:service:device-information:00007801:yyunyi-yypy24:1",
description: "Device Information",
properties: [
{
iid: 1,
type: "urn:miot-spec-v2:property:manufacturer:00000001:yyunyi-yypy24:1",
description: "Device Manufacturer",
format: "string",
access: [
"read"
]
},
{
iid: 2,
type: "urn:miot-spec-v2:property:model:00000002:yyunyi-yypy24:1",
description: "Device Model",
format: "string",
access: [
"read"
]
},
{
iid: 3,
type: "urn:miot-spec-v2:property:serial-number:00000003:yyunyi-yypy24:1",
description: "Device Serial Number",
format: "string",
access: [
"read"
]
},
{
iid: 4,
type: "urn:miot-spec-v2:property:firmware-revision:00000005:yyunyi-yypy24:1",
description: "Current Firmware Version",
format: "string",
access: [
"read"
]
}
]
},
{
iid: 2,
type: "urn:miot-spec-v2:service:window-opener:00007889:yyunyi-yypy24:1",
description: "Window Opener",
properties: [
{
iid: 1,
type: "urn:miot-spec-v2:property:status:00000007:yyunyi-yypy24:1",
description: "Status",
format: "uint8",
access: [
"read"
],
value-list: [
{
value: 1,
description: "Pause"
},
{
value: 2,
description: "Open"
},
{
value: 3,
description: "Close"
}
]
},
{
iid: 2,
type: "urn:miot-spec-v2:property:target-position:0000003A:yyunyi-yypy24:1",
description: "Target Position",
format: "uint8",
access: [
"read",
"write"
],
unit: "percentage",
value-range: [
0,
100,
1
]
},
{
iid: 3,
type: "urn:miot-spec-v2:property:speed-level:00000023:yyunyi-yypy24:1",
description: "Speed Level",
format: "uint8",
access: [
"read",
"write"
],
value-range: [
2,
8,
2
]
},
{
iid: 4,
type: "urn:miot-spec-v2:property:motor-control:00000038:yyunyi-yypy24:1",
description: "Motor Control",
format: "uint8",
access: [
"write"
],
value-list: [
{
value: 1,
description: "Pause"
},
{
value: 2,
description: "Open"
},
{
value: 3,
description: "Close"
}
]
}
]
},
{
iid: 3,
type: "urn:miot-spec-v2:service:alarm:00007804:yyunyi-yypy24:1",
description: "Alarm",
properties: [
{
iid: 1,
type: "urn:miot-spec-v2:property:alarm:00000012:yyunyi-yypy24:1",
description: "Alarm",
format: "bool",
access: [
"read",
"write"
]
}
]
},
{
iid: 4,
type: "urn:miot-spec-v2:service:physical-controls-locked:00007807:yyunyi-yypy24:1",
description: "Physical Control Locked",
properties: [
{
iid: 1,
type: "urn:miot-spec-v2:property:physical-controls-locked:0000001D:yyunyi-yypy24:1",
description: "Physical Control Locked",
format: "bool",
access: [
"read",
"write"
]
}
]
}
]
} |
|