-
Notifications
You must be signed in to change notification settings - Fork 29
/
manifest.json
124 lines (124 loc) · 3.36 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"author": "WebThingsIO",
"description": "Zigbee device support, via USB dongle or external Zigbee2MQTT instance.",
"gateway_specific_settings": {
"webthings": {
"exec": "{nodeLoader} {path}",
"primary_type": "adapter",
"strict_max_version": "*",
"strict_min_version": "1.0.0",
"enabled": true
}
},
"homepage_url": "https://github.com/WebThingsIO/zigbee-adapter",
"id": "zigbee-adapter",
"license": "MPL-2.0",
"manifest_version": 1,
"name": "Zigbee",
"options": {
"default": {
"scanChannels": 8190,
"allowFTDISerial": false,
"allowAMASerial": false,
"showAging": false,
"debug": "",
"deactivateProbing": false
},
"schema": {
"type": "object",
"required": [
"scanChannels",
"allowFTDISerial"
],
"properties": {
"scanChannels": {
"type": "integer",
"default": 8190
},
"allowFTDISerial": {
"type": "boolean",
"default": false
},
"allowAMASerial": {
"type": "boolean",
"default": false
},
"debug": {
"type": "string",
"default": ""
},
"showAging": {
"type": "boolean",
"title": "Show Aging",
"description": "experimental - Creates an additional 'Last seen' property to show when each device was last active on the Zigbee network"
},
"deactivateProbing": {
"type": "boolean",
"title": "Deactivate automatic probing of the serial ports"
},
"sticks": {
"type": "array",
"title": "List of ZigBee sticks to use",
"items": {
"type": "object",
"title": "ZigBee Stick",
"required": [
"type",
"port"
],
"properties": {
"type": {
"type": "string",
"enum": [
"xbee",
"conbee",
"zstack"
]
},
"port": {
"type": "string"
}
}
}
},
"zigbee2mqtt": {
"title": "Zigbee2Mqtt",
"type": "object",
"properties": {
"zigbee2mqttDebugLogs": {
"title": "Enable Zigbee2Mqtt debug logs",
"type": "boolean"
},
"zigbee2mqttAdapters": {
"title": "List of Zigbee2MQTT adapters",
"type": "array",
"items": {
"title": "Zigbee2MQTT adapter",
"type": "object",
"required": [
"host"
],
"properties": {
"host": {
"type": "string",
"title": "Hostname of the mqtt broker (e.g. localhost)"
},
"port": {
"type": "number",
"title": "Port of the mqtt broker (default 1883)"
},
"topicPrefix": {
"type": "string",
"title": "Topic prefix of the adapter (default zigbee2mqtt)"
}
}
}
}
}
}
}
}
},
"short_name": "Zigbee",
"version": "0.22.0"
}