generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.schema.json
79 lines (79 loc) · 2.3 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
{
"pluginAlias": "decent-advanced-rest-api",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"properties": {
"machines": {
"type": "array",
"items": {
"title": "Machines",
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "DE1 Pro"
},
"host": {
"title": "Hostname / IP of tablet including Port",
"type": "string",
"required": true,
"default": "192.168.1.2:8888"
},
"waterTankSize": {
"title": "Water Tank Size in mL, adapt to match your filling behavior",
"type": "number",
"required": false,
"default": 1500,
"minimum": 0,
"maximum": 10000
},
"suppressHeadTemperature": {
"title": "Suppress head temperature sensor from being exposed to HomeKit",
"type": "boolean",
"required": false,
"default": false
},
"suppressSteamHeaterTemperature": {
"title": "Suppress steam heater temperature sensor from being exposed to HomeKit",
"type": "boolean",
"required": false,
"default": false
},
"suppressMixTemperature": {
"title": "Suppress mix temperature sensor from being exposed to HomeKit",
"type": "boolean",
"required": false,
"default": false
},
"suppressWaterLevel": {
"title": "Suppress water level sensor from being exposed to HomeKit",
"type": "boolean",
"required": false,
"default": false
}
}
}
},
"pullInterval": {
"title": "Pull Interval in ms",
"type": "number",
"required": false,
"default": 1000,
"minimum": 100,
"maximum": 60000
},
"timeout": {
"title": "Timeout",
"type": "number",
"required": false,
"default": 200,
"minimum": 50,
"maximum": 10000
}
}
}
}