-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.95 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.95 KB
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
{
"name": "zigbee-conbee-adapter",
"display_name": "Zigbee (ConBee USB stick)",
"version": "0.9.5",
"description": "Uses deCONZ REST API to manage ConBee USB stick. Check https://github.com/tomasy/zigbee-conbee-adapter ",
"author": "tomasy",
"main": "main.py",
"keywords": [
"mozilla",
"iot",
"adapter",
"zigbee",
"conbee",
"deconz"
],
"homepage": "https://github.com/tomasy/zigbee-conbee-adapter",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/tomasy/zigbee-conbee-adapter.git"
},
"bugs": {
"url": "https://github.com/tomasy/zigbee-conbee-adapter/issues"
},
"files": [
"LICENSE",
"SHA256SUMS",
"README.md",
"main.py",
"pkg/__init__.py",
"pkg/conbee_action.py",
"pkg/conbee_adapter.py",
"pkg/conbee_config.py",
"pkg/conbee_device.py",
"pkg/conbee_property.py",
"pkg/deconz_rest_api.py",
"pkg/util.py"
],
"moziot": {
"api": {
"min": 2,
"max": 2
},
"enabled": false,
"plugin": true,
"exec": "python3 {path}/main.py",
"config": {
"url": "",
"apikey": "",
"temperature": "Celsius",
"log_level": "INFO"
},
"schema": {
"type": "object",
"description": "Configuration for access ConBee USB-stick Rest API",
"required": [
"url",
"apikey"
],
"properties": {
"url": {
"type": "string",
"description": "URL to device with ConBee USB-stick"
},
"apikey": {
"type": "string",
"description": "Key to access rest api (Check README.md)"
},
"temperature": {
"type": "string",
"enum": [ "Celsius", "Fahrenheit" ],
"description": "Unit for temperature"
},
"log_level": {
"type": "string",
"enum": [ "INFO", "DEBUG" ],
"description": "Log level. Use INFO as standard"
}
}
}
}
}