-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdevice-config-schema.coffee
executable file
·81 lines (81 loc) · 2.72 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
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
module.exports = {
title: "intergasincomfort-thermostat device config schemas"
IntergasIncomfortHeatingThermostat: {
title: "IntergasIncomfortHeatingThermostat config options"
type: "object"
properties:
connection:
description: "All Lan2RF connection settings"
type: "object"
properties:
host:
description: "The IP address of the Lan2RF Gateway"
type: "string"
updateInterval:
description: "The amount of ms between each update pull from the Lan2RF Gateway"
type: "integer"
default: 60000
heaterId:
description: "The ID of the boiler connected to the Lan2RF gateway"
type: "integer"
default: 0
roomId:
description: "The room ID of the thermostat, may be 0 or 1"
type: "integer"
default: 0
debug:
description: "Output update message from Lan2RF and additional infos"
type: "boolean"
default: false
comfyTemp:
description: "The defined comfy temperature"
type: "number"
ecoTemp:
description: "The defined eco mode temperature"
type: "number"
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
guiShowTemperatureInput:
description: "Show the temperature input spinbox in the gui"
type: "boolean"
default: true
guiShowValvePosition:
description: "Show the valve position in the gui"
type: "boolean"
default: true
},
IntergasIncomfortTemperatureSensor: {
title: "IntergasIncomfortTemperatureSensor config options"
type: "object"
properties:
connection:
description: "All Lan2RF connection settings"
type: "object"
properties:
host:
description: "The IP address of the Lan2RF Gateway"
type: "string"
updateInterval:
description: "The amount of ms between each update pull from the Lan2RF Gateway"
type: "integer"
default: 60000
heaterId:
description: "The ID of the boiler connected to the Lan2RF gateway"
type: "integer"
default: 0
roomId:
description: "The room ID of the temperature sensor, may be 0 or 1"
type: "integer"
default: 0
debug:
description: "Output update message from Lan2RF and additional infos"
type: "boolean"
default: false
}
}