This repository was archived by the owner on Jan 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdevice-config-schema.coffee
107 lines (107 loc) · 2.88 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
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
module.exports = {
title: "pimatic-aqara device config options"
AqaraMotionSensor: {
title: "AqaraMotionSensor config options"
type: "object"
extensions: ["xPresentLabel", "xAbsentLabel"]
properties:
SID:
description: "The unique SID for this device"
type: "string"
required: true
autoReset:
description: "By default the sensor resets after 120s, if this takes to long for you, enable autoreset"
type: "boolean"
default: true
resetTime:
type: "integer"
default: 60000
showLux:
description: "If you're using V1 of this sensor, disable lux"
type: "boolean"
default: true
displaySparkline:
description: "Show the sparkline for the lux value"
type: "boolean"
default: false
}
AqaraDoorSensor: {
title: "AqaraDoorSensor config options"
type: "object"
extensions: ["xClosedLabel", "xOpenedLabel"]
properties:
SID:
description: "The unique SID for this device"
type: "string"
required: true
}
AqaraLeakSensor: {
title: "AqaraLeakSensor config options"
type: "object"
properties:
SID:
description: "The unique SID for this device"
type: "string"
required: true
wet:
description: "Label when the sensor is wet"
type: "string"
default: "wet"
dry:
description: "Label when the sensor is dry"
type: "string"
default: "dry"
}
AqaraWirelessSwitch: {
title: "AqaraWirelessSwitch config options"
type: "object"
properties:
SID:
description: "The unique SID for this device"
type: "string"
required: true
}
AqaraWirelessButton: {
title: "AqaraWirelessButton config options"
type: "object"
properties:
SID:
description: "The unique SID for this device"
type: "string"
required: true
resetTime:
description: "The time the device resets to waiting state"
type: "integer"
default: 100
waitingState:
descrioption: "The label for the waiting state"
type: "string"
default: "Waiting..."
}
AqaraTemperatureSensor: {
title: "AqaraTemperatureSensor config options"
type: "object"
properties:
SID:
description: "The unique SID for this device"
type: "string"
required: true
showHumidity:
description: "If you don't need the humidity, hide it"
type: "boolean"
default: true
showPressure:
description: "If you're using V1 of this sensor, disable pressure"
type: "boolean"
default: true
}
AqaraMagicCube: {
title: "AqaraMagicCube config options"
type: "object"
properties:
SID:
description: "The unique SID for this device"
type: "string"
required: true
}
}