-
Notifications
You must be signed in to change notification settings - Fork 5
/
device-config-schema.js
45 lines (45 loc) · 1.14 KB
/
device-config-schema.js
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
// Generated by CoffeeScript 1.9.1
module.exports = {
title: "otgw-thermostat device config schemas",
OTGWMainThermostat: {
title: "OTGWMainThermostat config options",
type: "object",
properties: {}
},
OTGWHeatingThermostat: {
title: "OTGWHeatingThermostat config options",
type: "object",
properties: {
guiShowModeControl: {
description: "Show the mode buttons in the gui",
type: "boolean",
"default": true
},
guiShowPresetControl: {
description: "Show the preset temperatures in the gui",
type: "boolean",
"default": true
},
guiShowTemperatueInput: {
description: "Show the temperature input spinbox in the gui",
type: "boolean",
"default": true
},
comfyTemp: {
description: "The defined comfy temperature",
type: "number",
"default": 21
},
ecoTemp: {
description: "The defined eco mode temperature",
type: "number",
"default": 17
}
}
},
OTGWThermostat: {
title: "OTGWThermostat config options",
type: "object",
properties: {}
}
};