-
Notifications
You must be signed in to change notification settings - Fork 8
/
config.schema.json
82 lines (82 loc) · 2.28 KB
/
config.schema.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
{
"pluginAlias": "Landroid",
"pluginType": "platform",
"footerDisplay": "For documentation please see the https://github.com/normen/homebridge-landroid",
"schema": {
"email":{
"title": "eMail",
"description": "The email address of your worx account",
"type": "string",
"required": true
},
"pwd":{
"title": "Password",
"description": "The password of your worx account",
"type": "string",
"required": true
},
"cloud":{
"title": "Cloud Type",
"description": "The used cloud - worx, kress or landxcape",
"type": "string",
"placeholder": "worx",
"default": "worx",
"required": false
},
"rainsensor":{
"title": "Enable rain sensor",
"description": "Adds a 'Leak' sensor that shows the state of the mowers rain sensor. Note that you might have to reload all mowers once to enable this.",
"type": "boolean",
"required": false
},
"homesensor":{
"title": "Enable home sensor",
"description": "Adds a 'Home' sensor that shows the state of the mowers. If in home position sensor is closed. Note that you might have to reload all mowers once to enable this.",
"type": "boolean",
"required": false
},
"partymode":{
"title": "Enable PartyMode switch",
"description": "Adds a switch that enables PartyMode on supported mowers",
"type": "boolean",
"required": false
},
"reload":{
"title": "Reload All Mowers",
"description": "Clears and reloads all mowers from the cloud, set and reboot HomeBridge, then unset again.",
"type": "boolean",
"required": false
},
"debug":{
"title": "Debug Mode",
"description": "Shows additional debug info in the log",
"type": "boolean",
"required": false
},
"mowdata":{
"title": "Mowing Data Logging",
"description": "Shows additional mowing data in the log",
"type": "boolean",
"required": false
}
},
"form": [
"email",
"pwd",
"rainsensor",
"homesensor",
{
"type": "section",
"expandable": true,
"expanded": false,
"title": "Advanced",
"items": [
"cloud",
"reload",
"mowdata",
"partymode",
"debug"
]
}
]
}