forked from ActiveByte/homebridge-loxone-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.schema.json
126 lines (126 loc) · 5.54 KB
/
config.schema.json
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"pluginAlias": "LoxoneWs",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"properties": {
"host": {
"type": "string",
"required": true,
"description": "IP of your loxone miniserver"
},
"port": {
"type": "integer",
"description": "Port of your miniserver (default: 80)"
},
"username": {
"type": "string",
"required": true,
"description": "Loxone username"
},
"password": {
"type": "string",
"required": true,
"description": "Loxone password"
},
"options": {
"type": "object",
"title": "Options",
"properties": {
"rooms": {
"type": "string",
"description": "Optional, specify an array of interested rooms to filter on. If empty or not given, all elements are used. <br/> Example: specifying ['Kitchen', 'Bedroom'] will limit your bridge to only elements from those 2 rooms."
},
"StairwellSwitch": {
"type": "string",
"default": "pulse",
"enum": ["pulse","on"],
"description": "Optional, choose the switch behavior of the Stairwell Light Switch, default: 'pulse'.<br/><br/> Has 2 possible values: <br/> * pulse : Normal operation, light will stay on for fixed amount of time. This is the default in case not given. <br/> * on : Light will stay on as long as the switch is enabled."
},
"moodSwitches": {
"type": "string",
"default": "none",
"enum": ["none","all","only"],
"description": "Optional, displays Loxone moods (wich are part of LightControllerV2 elements) as seperate buttons, default: 'none'. <br/><br/> Has 3 possible values: <br/>* none : does not include moods. This is the default in case not given. <br/> * all : include moods as actionable item. <br/> * only : only include moods and filter out any other element."
},
"alarmSystem": {
"type": "string",
"default": "delayedon",
"enum": ["delayedon","on"],
"description": "optional, choose between instant and delayed activation of the alarm, default: 'delayedon'. <br/><br/> Has 2 possible values <br/> * delayedon : Alarm will be delayed. Default. <br/> * on : Alarm will be instantly on."
},
"alarmTrigerLevel": {
"type": "integer",
"default": "5",
"enum": ["1","2","3","4","5","6"],
"description": "Optional, choose at what level the alarm notification will be send to HomeKit, default: '5'. <br/><br/> Has 6 possible values:<br/> * 1 : Silent.<br/> * 2 : Acustic.<br/> * 3 : Optical.<br/> * 4 : Internal.<br/> * 5 : External.<br/> * 6 : Remote."
},
"autoLock": {
"type": "integer",
"default": "1",
"enum": ["0","1"],
"description": "Optional, whether the lock should automatically lock after being opened, default: '1'."
},
"autoLockDelay": {
"type": "integer",
"default": "5",
"description": "Optional, time (in seconds) until the lock will auto lock if enabled, default: '5'."
}
}
},
"alias": {
"type": "object",
"title": "Assumption aliases",
"description": "Change the prefixes being used for the assumptions",
"properties": {
"Lighting": {
"type": "string"
},
"Outlet": {
"type": "string"
},
"Doorbell": {
"type": "string"
},
"Trigger": {
"type": "string"
},
"Contact": {
"type": "string"
},
"Motion": {
"type": "string"
},
"Brightness": {
"type": "string"
},
"Temperature": {
"type": "string"
},
"Humidity": {
"type": "string"
},
"Leak": {
"type": "string"
},
"Smoke": {
"type": "string"
},
"Valve": {
"type": "string"
},
"Sprinklers": {
"type": "string"
},
"Fan": {
"type": "string"
},
"Lock": {
"type": "string"
}
}
}
}
}
}