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
/
manifest.json
62 lines (62 loc) · 2.18 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
{
"author": "CreateCandle",
"description": "Candle manager allows you to upload sketches to an Arduino.",
"gateway_specific_settings": {
"webthings": {
"exec": "python3 {path}/bootstrap.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": {
"Advanced": false,
"Arduino type": "Arduino Nano",
"Debug": false,
"Password": "changeme",
"Sketches": "https://raw.githubusercontent.com/createcandle/candle_source_code_list/master/candle_source_code_list.json"
},
"schema": {
"properties": {
"Advanced": {
"description": "Advanced. Show the advanced interface? This will give you extra options and details.",
"type": "boolean"
},
"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"
},
"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"
},
"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"
},
"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"
}
},
"required": [
"Password",
"Arduino type"
],
"type": "object"
}
},
"short_name": "Candle manag",
"version": "0.0.7"
}