This repository has been archived by the owner on Apr 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.9 KB
/
package.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
{
"name": "Candle-manager-addon",
"display_name": "Candle manager",
"version": "0.0.7",
"description": "Candle manager allows you to upload sketches to an Arduino.",
"author": "CreateCandle",
"main": "bootstrap.py",
"keywords": [
"privacy",
"iot",
"webthings",
"mysensors",
"arduino"
],
"homepage": "https://github.com/createcandle/Candle-manager-addon",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/createcandle/Candle-manager-addon.git"
},
"bugs": {
"url": "https://github.com/createcandle/Candle-manager-addon/issues"
},
"files": [
"LICENSE",
"SHA256SUMS",
"bootstrap.py",
"main.py",
"pkg/__init__.py",
"pkg/candle_adapter.py",
"requirements.txt",
"boards.txt",
"arduino-cli",
"pkg/static/css/main.css",
"pkg/static/css/wizard.css",
"pkg/static/js/jquery-3.4.1.min.js",
"pkg/static/js/main.js",
"pkg/static/js/wizard.jquery.js",
"pkg/static/images/candle_logo_simple.png",
"pkg/templates/index.html",
"source/Candle_cleaner/Candle_cleaner.ino",
"code/Candle_cleaner/Candle_cleaner.ino",
"manifest.json"
],
"moziot": {
"api": {
"min": 2,
"max": 2
},
"plugin": true,
"exec": "python3 {path}/bootstrap.py",
"config": {
"Password": "changeme",
"Sketches": "https://raw.githubusercontent.com/createcandle/candle_source_code_list/master/candle_source_code_list.json",
"Arduino type": "Arduino Nano",
"Advanced": false,
"Debug": false
},
"schema": {
"type": "object",
"required": [
"Password",
"Arduino type"
],
"properties": {
"Password": {
"type": "string",
"description": "A password for the security (encryption and/or signing) of the Candle/MySensors network. If you change this you will have to manually re-upload code to all your Candle/MySensors devices."
},
"Sketches": {
"type": "string",
"description": "Advanced. If you enter the URL of an Arduino sketch (.ino file) it will be downloaded and become available in the sketches list. You can also enter a link to a json file with multiple sketches."
},
"Arduino type": {
"type": "string",
"enum": [
"Arduino Nano",
"Arduino Uno",
"Arduino Mega"
],
"description": "Advanced. What type of Arduino you will connect? The Candle project works with the Arduino Nano."
},
"Advanced": {
"type": "boolean",
"description": "Advanced. Show the advanced interface? This will give you extra options and details."
},
"Debug": {
"type": "boolean",
"description": "Advanced. Enable this to see much more detail in the internal WebThings Gateway log about what this add-on is doing."
}
}
}
}
}