forked from Timvdv/pimatic-zwave-usb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
device-config-schema.coffee
55 lines (55 loc) · 1.39 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
module.exports = {
title: "pimatic-zwave-usb device config schemas"
ZwaveThermostat: {
title: "ZWave thermostat options"
type: "object"
properties:
node:
description: "The zwave nodeid"
type: "integer"
default: 0
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
syncTimeout:
description: "After this timeout the sync status is reset to false, in minutes"
type: "integer"
default: 0
}
ZwavePowerSwitch: {
title: "ZWave powerswitch options"
type: "object"
properties:
node:
description: "The zwave nodeid"
type: "integer"
default: 0
}
ZwaveDimmer: {
title: "ZWave dimmer options"
type: "object"
properties:
node:
description: "The zwave nodeid"
type: "integer"
default: 0
}
ZwaveWindowSensor: {
title: "ZWave window sensor options"
type: "object"
properties:
node:
description: "The zwave nodeid"
type: "integer"
default: 0
syncTimeout:
description: "After this timeout the sync status is reset to false, in minutes"
type: "integer"
default: 0
}
}