forked from Fjuxx/pimatic-otgw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
device-config-schema.coffee
38 lines (38 loc) · 1.02 KB
/
device-config-schema.coffee
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
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: {}
}
}