-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
43 lines (43 loc) · 1.25 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
{
"author": "Flatsiedatsie",
"description": "Support for MiFlora flower care devices by Xiaomi",
"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/flatsiedatsie/xiaomi-miflora",
"id": "xiaomi-miflora",
"license": "MPL-2.0",
"manifest_version": 1,
"name": "Xiaomi MiFlora",
"options": {
"default": {
"Metric": true,
"Polling interval": 24,
"Debugging": false
},
"schema": {
"properties": {
"Polling interval": {
"description": "How many hours should there be between polling the MiFlora devices? Default is 24 hours.",
"type": "number"
},
"Debugging": {
"description": "Debugging allows you to diagnose any issues with the add-on. If enabled it will result in a lot more debug data in the internal log (which can be found under settings -> developer -> view internal logs).",
"type": "boolean"
}
},
"required": [
"Polling interval",
"Debugging"
],
"type": "object"
}
},
"short_name": "xmiflora",
"version": "0.0.1"
}