-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
81 lines (81 loc) · 2.49 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
{
"author": "CreateCandle",
"content_scripts": [
{
"css": [
"css/extension.css",
"css/main.css",
"css/wizard.css"
],
"js": [
"js/extension.js"
]
}
],
"description": "Candle manager allows you to upload code to an Arduino",
"gateway_specific_settings": {
"webthings": {
"exec": "python3 {path}/main.py",
"primary_type": "adapter",
"strict_max_version": "*",
"strict_min_version": "0.10.0"
}
},
"homepage_url": "https://github.com/createcandle/Candle-manager-addon",
"id": "Candle-manager-addon",
"license": "MPL-2.0",
"manifest_version": 1,
"name": "Candle manager",
"options": {
"default": {
"Password": "changeme",
"Arduino type": "Arduino Nano",
"Sketches": "https://raw.githubusercontent.com/createcandle/candle_source_code_list/master/candle_source_code_list.json",
"Advanced": false,
"Debug": false
},
"schema": {
"properties": {
"Password": {
"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.",
"type": "string"
},
"Arduino type": {
"description": "Advanced. What type of Arduino you will connect? The Candle project works with the Arduino Nano.",
"enum": [
"Arduino Nano",
"Arduino Uno",
"Arduino Mega"
],
"type": "string"
},
"Sketches": {
"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.",
"type": "string"
},
"Advanced": {
"description": "Advanced. Show the advanced interface? This will give you extra options and details.",
"type": "boolean"
},
"Debug": {
"description": "Advanced. Enable this to see much more detail in the internal WebThings Gateway log about what this add-on is doing.",
"type": "boolean"
}
},
"required": [
"Password",
"Arduino type"
],
"type": "object"
}
},
"short_name": "Candle Mgr",
"version": "1.3.2",
"web_accessible_resources": [
"css/*.css",
"images/*.svg",
"images/candle_logo_simple.png",
"js/*.js",
"views/*.html"
]
}