forked from iler/homebridge-airthings-waveplus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.schema.json
42 lines (41 loc) · 1.06 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
{
"pluginAlias": "Airthings WavePlus",
"pluginType": "accessory",
"schema": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"description": "The WavePlus device name to show in HomeKit.",
"default": "My WavePlus"
},
"serialNumber": {
"title": "Serial Number",
"type": "string",
"required": true,
"description": "The WavePlus serial number from the device's sticker.",
"default": "1234567890"
},
"disableTemp": {
"title": "disableTemp",
"type": "boolean",
"required": false,
"description": "If false, will display the WavePlus temperature reading in HomeKit.",
"default": "false"
},
"disableHumidity": {
"title": "disableHumidity",
"type": "boolean",
"required": false,
"description": "If false, will display the WavePlus humidity reading in HomeKit.",
"default": "false"
},
"frequency": {
"title": "frequency",
"type": "integer",
"required": false,
"description": "If set, provides the frequency (in seconds) for updating HomeKit.",
"default": 60
}
}
}