-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.schema.json
115 lines (115 loc) · 3.96 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"pluginAlias": "ActronNeo",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "ActronNeo"
},
"username": {
"title": "Neo Account Username",
"type": "string",
"required": true,
"placeholder": "[email protected]"
},
"password": {
"title": "Neo Account Password",
"type": "string",
"required": true,
"placeholder": "password"
},
"zonesFollowMaster": {
"title": "Set ALL Zones to Master Temp on Master Temp Change",
"description": "Sets 'Control All Zones' for master temp changes. Recommended to leave this setting on.",
"type": "boolean",
"required": false,
"default": true
},
"zonesPushMaster": {
"title": "Adjust Master Temp if Zone Set Outside of Permitted Thresholds",
"description": "If zone is set outside of allowed +/- 2 degree variance then push the master temp to allow setting",
"type": "boolean",
"required": false,
"default": true
},
"zonesAsHeaterCoolers": {
"title": "Expose each zone as configurable Heater/Cooler accessories in HomeKit",
"description": "If set to true, each zone will show as Heater/Cooler accessories inside HomeKit. Recommended that this is left false, which will cause each zone to show as an on off switch instead.",
"type": "boolean",
"required": false,
"default": false
},
"clientName": {
"title": "Client Name",
"description": "Used to register plugin on Neo Cloud as an 'Authorised Device' & default HomeKit name.",
"type": "string",
"required": true,
"default": "homebridge-actron-neo"
},
"refreshInterval": {
"title": "Periodic Refresh Interval",
"description": "Time in seconds to refresh device state information from Neo API and in HomeKit.",
"type": "integer",
"required": false,
"default": 60
},
"deviceSerial": {
"title": "Neo System Serial Number",
"description": "Only required if you have multiple systems in your Neo cloud account.",
"type": "string",
"required": false,
"placeholder": "Leave Blank If You Have A Single Neo System - Plugin Will Auto Discover"
},
"adjustThresholds": {
"title": "Modify default heating cooling threshold temperatures",
"description": "Cooling default min/max = 10/24. Heating default min/max = 16/30",
"type": "boolean"
},
"maxCoolingTemp": {
"title": "Maximum Cooling Temp",
"description": "Maximum temp setting for cooling in degrees celsius",
"type": "integer",
"required": false,
"default": 24,
"condition": {
"functionBody": "return model.adjustThresholds === true;"
}
},
"minCoolingTemp": {
"title": "Minimum Cooling Temp",
"description": "Minimum temp setting for cooling in degrees celsius",
"type": "integer",
"required": false,
"default": 10,
"condition": {
"functionBody": "return model.adjustThresholds === true;"
}
},
"maxHeatingTemp": {
"title": "Maximum Heating Temp",
"description": "Maximum temp setting for heating in degrees celsius",
"type": "integer",
"required": false,
"default": 30,
"condition": {
"functionBody": "return model.adjustThresholds === true;"
}
},
"minHeatingTemp": {
"title": "Minimum Heating Temp",
"description": "Minimum temp setting for heating in degrees celsius",
"type": "integer",
"required": false,
"default": 16,
"condition": {
"functionBody": "return model.adjustThresholds === true;"
}
}
}
}
}