forked from davidborzek/homebridge-dummy-thermostat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.schema.json
41 lines (41 loc) · 1.42 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": "Thermostat",
"pluginType": "accessory",
"singular": false,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "Thermostat",
"description": "The name that will appear in the Home App and your homebridge log."
},
"temperatureDisplayUnits": {
"title": "temperatureDisplayUnits",
"type": "string",
"default": "0",
"oneOf": [
{ "title": "Celsius", "enum": ["0"] },
{ "title": "Fahrenheit", "enum": ["1"] }
],
"description": "Whether you want °C or °F for your units."
},
"model": {
"title": "model",
"type": "string",
"required": false,
"placeholder": "Dummy",
"description": "The Model that will appears for your accessory in the Home app."
},
"manufacturer": {
"title": "manufacturer",
"type": "string",
"required": false,
"placeholder": "Dummy",
"description": "The Manufacturer that will appears for your accessory in the Home app."
}
}
}
}