iobroker.loxone 3.0.1 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +183 -183
- package/README.md +417 -411
- package/admin/i18n/de.json +15 -0
- package/admin/i18n/en.json +15 -0
- package/admin/i18n/es.json +18 -0
- package/admin/i18n/fr.json +18 -0
- package/admin/i18n/it.json +18 -0
- package/admin/i18n/nl.json +18 -0
- package/admin/i18n/pl.json +18 -0
- package/admin/i18n/pt.json +18 -0
- package/admin/i18n/ru.json +18 -0
- package/admin/i18n/uk.json +18 -0
- package/admin/i18n/zh-cn.json +18 -0
- package/admin/jsonConfig.json +96 -0
- package/io-package.json +49 -38
- package/package.json +36 -49
- package/src/controls/AalEmergency.ts +90 -0
- package/src/controls/AalSmartAlarm.ts +99 -0
- package/src/controls/Alarm.ts +146 -0
- package/src/controls/AlarmClock.ts +137 -0
- package/src/controls/Application.ts +13 -0
- package/src/controls/AudioZone.ts +227 -0
- package/src/controls/AudioZoneV2.ts +135 -0
- package/src/controls/CentralAlarm.ts +59 -0
- package/src/controls/CentralAudioZone.ts +41 -0
- package/src/controls/CentralGate.ts +53 -0
- package/src/controls/CentralJalousie.ts +67 -0
- package/src/controls/CentralLightController.ts +45 -0
- package/src/controls/ColorPickerV2.ts +34 -0
- package/src/controls/Colorpicker.ts +30 -0
- package/src/controls/ColorpickerBase.ts +326 -0
- package/src/controls/Daytimer.ts +201 -0
- package/src/controls/Dimmer.ts +64 -0
- package/src/controls/EIBDimmer.ts +61 -0
- package/src/controls/Fronius.ts +217 -0
- package/src/controls/Gate.ts +150 -0
- package/src/controls/Hourcounter.ts +115 -0
- package/src/controls/IRCDaytimer.ts +4 -0
- package/src/controls/IRCV2Daytimer.ts +4 -0
- package/src/controls/IRoomControllerV2.ts +595 -0
- package/src/controls/InfoOnlyAnalog.ts +56 -0
- package/src/controls/InfoOnlyDigital.ts +95 -0
- package/src/controls/InfoOnlyText.ts +52 -0
- package/{build/controls/Intercom.js → src/controls/Intercom.ts} +27 -11
- package/src/controls/Jalousie.ts +219 -0
- package/src/controls/LightController.ts +112 -0
- package/src/controls/LightControllerV2.ts +246 -0
- package/src/controls/MailBox.ts +92 -0
- package/src/controls/Meter.ts +94 -0
- package/src/controls/None.ts +29 -0
- package/src/controls/PresenceDetector.ts +47 -0
- package/src/controls/Pushbutton.ts +55 -0
- package/src/controls/Radio.ts +61 -0
- package/{build/controls/Remote.js → src/controls/Remote.ts} +19 -11
- package/src/controls/Slider.ts +78 -0
- package/src/controls/SmokeAlarm.ts +163 -0
- package/src/controls/Switch.ts +46 -0
- package/src/controls/SystemScheme.ts +13 -0
- package/src/controls/TextInput.ts +96 -0
- package/src/controls/TextState.ts +37 -0
- package/src/controls/TimedSwitch.ts +75 -0
- package/src/controls/Tracker.ts +30 -0
- package/{build/controls/Unknown.js → src/controls/Unknown.ts} +18 -11
- package/src/controls/UpDownAnalog.ts +78 -0
- package/{build/controls/ValueSelector.js → src/controls/ValueSelector.ts} +21 -9
- package/src/controls/WindowMonitor.ts +139 -0
- package/src/controls/all-controls.ts +99 -0
- package/src/controls/control-base.ts +28 -0
- package/src/lib/adapter-config.d.ts +22 -0
- package/src/loxone-handler-base.ts +285 -0
- package/src/lxcommunicator.d.ts +1 -0
- package/src/main.test.ts +24 -0
- package/{build/main.js → src/main.ts} +545 -270
- package/src/structure-file.d.ts +154 -0
- package/src/weather-server-handler.ts +266 -0
- package/admin/admin.d.ts +0 -58
- package/admin/index_m.html +0 -126
- package/admin/style.css +0 -32
- package/admin/words.js +0 -25
- package/build/controls/AalEmergency.js +0 -45
- package/build/controls/AalEmergency.js.map +0 -1
- package/build/controls/AalSmartAlarm.js +0 -48
- package/build/controls/AalSmartAlarm.js.map +0 -1
- package/build/controls/Alarm.js +0 -81
- package/build/controls/Alarm.js.map +0 -1
- package/build/controls/AlarmClock.js +0 -59
- package/build/controls/AlarmClock.js.map +0 -1
- package/build/controls/Application.js +0 -11
- package/build/controls/Application.js.map +0 -1
- package/build/controls/AudioZone.js +0 -116
- package/build/controls/AudioZone.js.map +0 -1
- package/build/controls/CentralAlarm.js +0 -30
- package/build/controls/CentralAlarm.js.map +0 -1
- package/build/controls/CentralAudioZone.js +0 -22
- package/build/controls/CentralAudioZone.js.map +0 -1
- package/build/controls/CentralGate.js +0 -30
- package/build/controls/CentralGate.js.map +0 -1
- package/build/controls/CentralJalousie.js +0 -39
- package/build/controls/CentralJalousie.js.map +0 -1
- package/build/controls/CentralLightController.js +0 -27
- package/build/controls/CentralLightController.js.map +0 -1
- package/build/controls/ColorPickerV2.js +0 -24
- package/build/controls/ColorPickerV2.js.map +0 -1
- package/build/controls/Colorpicker.js +0 -20
- package/build/controls/Colorpicker.js.map +0 -1
- package/build/controls/ColorpickerBase.js +0 -263
- package/build/controls/ColorpickerBase.js.map +0 -1
- package/build/controls/Daytimer.js +0 -119
- package/build/controls/Daytimer.js.map +0 -1
- package/build/controls/Dimmer.js +0 -34
- package/build/controls/Dimmer.js.map +0 -1
- package/build/controls/EIBDimmer.js +0 -31
- package/build/controls/EIBDimmer.js.map +0 -1
- package/build/controls/Fronius.js +0 -64
- package/build/controls/Fronius.js.map +0 -1
- package/build/controls/Gate.js +0 -104
- package/build/controls/Gate.js.map +0 -1
- package/build/controls/Hourcounter.js +0 -46
- package/build/controls/Hourcounter.js.map +0 -1
- package/build/controls/IRCDaytimer.js +0 -9
- package/build/controls/IRCDaytimer.js.map +0 -1
- package/build/controls/IRCV2Daytimer.js +0 -9
- package/build/controls/IRCV2Daytimer.js.map +0 -1
- package/build/controls/IRoomControllerV2.js +0 -371
- package/build/controls/IRoomControllerV2.js.map +0 -1
- package/build/controls/InfoOnlyAnalog.js +0 -38
- package/build/controls/InfoOnlyAnalog.js.map +0 -1
- package/build/controls/InfoOnlyDigital.js +0 -65
- package/build/controls/InfoOnlyDigital.js.map +0 -1
- package/build/controls/InfoOnlyText.js +0 -35
- package/build/controls/InfoOnlyText.js.map +0 -1
- package/build/controls/Intercom.js.map +0 -1
- package/build/controls/Jalousie.js +0 -153
- package/build/controls/Jalousie.js.map +0 -1
- package/build/controls/LightController.js +0 -68
- package/build/controls/LightController.js.map +0 -1
- package/build/controls/LightControllerV2.js +0 -195
- package/build/controls/LightControllerV2.js.map +0 -1
- package/build/controls/MailBox.js +0 -41
- package/build/controls/MailBox.js.map +0 -1
- package/build/controls/Meter.js +0 -52
- package/build/controls/Meter.js.map +0 -1
- package/build/controls/None.js +0 -23
- package/build/controls/None.js.map +0 -1
- package/build/controls/PresenceDetector.js +0 -29
- package/build/controls/PresenceDetector.js.map +0 -1
- package/build/controls/Pushbutton.js +0 -35
- package/build/controls/Pushbutton.js.map +0 -1
- package/build/controls/Radio.js +0 -39
- package/build/controls/Radio.js.map +0 -1
- package/build/controls/Remote.js.map +0 -1
- package/build/controls/Slider.js +0 -44
- package/build/controls/Slider.js.map +0 -1
- package/build/controls/SmokeAlarm.js +0 -85
- package/build/controls/SmokeAlarm.js.map +0 -1
- package/build/controls/Switch.js +0 -31
- package/build/controls/Switch.js.map +0 -1
- package/build/controls/SystemScheme.js +0 -11
- package/build/controls/SystemScheme.js.map +0 -1
- package/build/controls/TextInput.js +0 -55
- package/build/controls/TextInput.js.map +0 -1
- package/build/controls/TextState.js +0 -20
- package/build/controls/TextState.js.map +0 -1
- package/build/controls/TimedSwitch.js +0 -36
- package/build/controls/TimedSwitch.js.map +0 -1
- package/build/controls/Tracker.js +0 -20
- package/build/controls/Tracker.js.map +0 -1
- package/build/controls/Unknown.js.map +0 -1
- package/build/controls/UpDownAnalog.js +0 -44
- package/build/controls/UpDownAnalog.js.map +0 -1
- package/build/controls/ValueSelector.js.map +0 -1
- package/build/controls/WindowMonitor.js +0 -84
- package/build/controls/WindowMonitor.js.map +0 -1
- package/build/controls/control-base.js +0 -12
- package/build/controls/control-base.js.map +0 -1
- package/build/loxone-handler-base.js +0 -186
- package/build/loxone-handler-base.js.map +0 -1
- package/build/main.js.map +0 -1
- package/build/weather-server-handler.js +0 -120
- package/build/weather-server-handler.js.map +0 -1
- package/doc/details-missing-control-type.png +0 -0
- package/doc/log-missing-control-type.png +0 -0
- package/doc/loxone-config-display-diagnostics.png +0 -0
- package/doc/loxone-config-info-only-digital.png +0 -0
- package/doc/loxone-config-use-in-visualization.png +0 -0
package/README.md
CHANGED
|
@@ -2,11 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
# ioBroker.loxone
|
|
4
4
|
|
|
5
|
-
[](https://www.npmjs.com/package/iobroker.loxone)
|
|
6
6
|
[](https://www.npmjs.com/package/iobroker.loxone)
|
|
7
|
-
](https://david-dm.org/UncleSamSwiss/iobroker.loxone)
|
|
7
|
+

|
|
8
|
+

|
|
10
9
|
[](https://weblate.iobroker.net/engage/adapters/?utm_source=widget)
|
|
11
10
|
|
|
12
11
|
[](https://nodei.co/npm/iobroker.loxone/)
|
|
@@ -15,7 +14,7 @@
|
|
|
15
14
|
|
|
16
15
|
## loxone adapter for ioBroker
|
|
17
16
|
|
|
18
|
-
**_This adapter requires at least nodejs
|
|
17
|
+
**_This adapter requires at least nodejs 20.x!_**
|
|
19
18
|
|
|
20
19
|
Fetches all information available in Loxone Miniserver (and Loxone Miniserver Go) and provides changes in realtime.
|
|
21
20
|
|
|
@@ -73,10 +72,10 @@ This will populate the enum.functions enumeration with all categories provided b
|
|
|
73
72
|
|
|
74
73
|
Choose what weather data you wish to synchronize:
|
|
75
74
|
|
|
76
|
-
-
|
|
77
|
-
-
|
|
78
|
-
-
|
|
79
|
-
-
|
|
75
|
+
- "Don't synchronize weather data" will not synchronize anything related to the Weather Server
|
|
76
|
+
- "Synchronize current weather only" will synchronize the data under "Actual"
|
|
77
|
+
- "Synchronize 24 hours of weather forcast" will synchronize the current weather and 24 hours of weather forcast
|
|
78
|
+
- "Synchronize entire weather forcast" will synchronize the current weather and the entire weather forcast (96 hours)
|
|
80
79
|
|
|
81
80
|
## States
|
|
82
81
|
|
|
@@ -84,9 +83,9 @@ The adapter automatically connects to the configured Loxone Miniserver and creat
|
|
|
84
83
|
|
|
85
84
|
The IDs of the states are formatted like this: `loxone.<instance>.<control>.<state>`
|
|
86
85
|
|
|
87
|
-
-
|
|
88
|
-
-
|
|
89
|
-
-
|
|
86
|
+
- `<instance>` is the ioBroker adapter instance index (usually "0")
|
|
87
|
+
- `<control>` is the UUID of the control
|
|
88
|
+
- `<state>` is the state within the control (see [Supported Control Types](#supported-control-types) for more information).
|
|
90
89
|
|
|
91
90
|
The name provided when configuring a control in Loxone Config will only be used as its display name in ioBroker.
|
|
92
91
|
This is because a user may choose the same name for multiple controls.
|
|
@@ -115,13 +114,13 @@ To see diagnostic inputs (e.g. battery status of Air devices), please verify tha
|
|
|
115
114
|
|
|
116
115
|
The following global states are currently provided by this adapter:
|
|
117
116
|
|
|
118
|
-
-
|
|
119
|
-
-
|
|
120
|
-
-
|
|
121
|
-
-
|
|
122
|
-
-
|
|
123
|
-
-
|
|
124
|
-
-
|
|
117
|
+
- `operatingMode`: the current operating mode number of the Loxone Miniserver
|
|
118
|
+
- `operatingMode-text`: the current operating mode of the Loxone Miniserver as text
|
|
119
|
+
- `sunrise`: the number of minutes after midnight when the sun rises today
|
|
120
|
+
- `sunset`: the number of minutes after midnight when the sun goes down today
|
|
121
|
+
- `notifications`: the number of notifications
|
|
122
|
+
- `modifications`: the number of modifications
|
|
123
|
+
- all other global states are simply reported as texts
|
|
125
124
|
|
|
126
125
|
## Supported Control Types
|
|
127
126
|
|
|
@@ -129,149 +128,149 @@ The following control types are currently supported by this adapter.
|
|
|
129
128
|
|
|
130
129
|
Behind the name of the state, you can see the type of the state:
|
|
131
130
|
|
|
132
|
-
-
|
|
133
|
-
-
|
|
134
|
-
-
|
|
131
|
+
- `(rw)`: readable and writable: this state can be changed from ioBroker
|
|
132
|
+
- `(ro)`: read-only: this state can't be changed from ioBroker
|
|
133
|
+
- `(wo)`: write-only: this state's value isn't reported by this adapter, but it can be changed, triggering some action on the Loxone Miniserver
|
|
135
134
|
|
|
136
135
|
### AalSmartAlarm
|
|
137
136
|
|
|
138
137
|
Provided by AAL Smart Alarm control.
|
|
139
138
|
|
|
140
|
-
-
|
|
141
|
-
-
|
|
142
|
-
-
|
|
143
|
-
-
|
|
144
|
-
-
|
|
145
|
-
-
|
|
146
|
-
-
|
|
147
|
-
-
|
|
148
|
-
-
|
|
149
|
-
-
|
|
150
|
-
-
|
|
139
|
+
- `alarmLevel` (ro) the ID of the current alarm level
|
|
140
|
+
- 0 = No alarm
|
|
141
|
+
- 1 = Immediate alarm
|
|
142
|
+
- 2 = Delayed alarm
|
|
143
|
+
- `alarmCause` (ro) A string representing the last cause for an alarm
|
|
144
|
+
- `isLocked` (ro) Reset active, inputs will be ignored and therefore no alarms will be executed
|
|
145
|
+
- `isLeaveActive` (ro) Leave input is set, no alarms will be executed
|
|
146
|
+
- `disableEndTime` (ro) End time for the control to be disabled
|
|
147
|
+
- `confirm` (wo) Confirm pending alarm
|
|
148
|
+
- `disable` (wo) Disable control for a certain period of time, no alarms will be executed. Setting it to 0 will reenable the Smart Alarm
|
|
149
|
+
- `startDrill` (wo) Execute test alarm
|
|
151
150
|
|
|
152
151
|
### AalEmergency
|
|
153
152
|
|
|
154
153
|
Provided by AAL Smart Emergency Button control.
|
|
155
154
|
|
|
156
|
-
-
|
|
157
|
-
-
|
|
158
|
-
-
|
|
159
|
-
-
|
|
160
|
-
-
|
|
161
|
-
-
|
|
162
|
-
-
|
|
163
|
-
-
|
|
164
|
-
-
|
|
165
|
-
-
|
|
155
|
+
- `status` (ro) the ID of the current status
|
|
156
|
+
- 0 = running, normal operation, waiting for emergency button press
|
|
157
|
+
- 1 = alarm triggered
|
|
158
|
+
- 2 = reset input in config asserted, control is shut down
|
|
159
|
+
- 3 = app has temporarily disabled control
|
|
160
|
+
- `disableEndTime` (ro) End time for the control to be disabled
|
|
161
|
+
- `resetActive` (ro) text state with the active reset input (if control is in reset)
|
|
162
|
+
- `trigger` (wo) trigger an alarm from the app
|
|
163
|
+
- `quit` (wo) quit an active alarm
|
|
164
|
+
- `disable` (wo) disable the control for the given time in seconds. Set to 0 to start control again if it is disabled
|
|
166
165
|
|
|
167
166
|
### Alarm
|
|
168
167
|
|
|
169
168
|
Provided by burgler alarm control.
|
|
170
169
|
|
|
171
|
-
-
|
|
172
|
-
-
|
|
173
|
-
-
|
|
174
|
-
-
|
|
175
|
-
-
|
|
176
|
-
-
|
|
177
|
-
-
|
|
178
|
-
-
|
|
179
|
-
-
|
|
180
|
-
-
|
|
181
|
-
-
|
|
182
|
-
-
|
|
183
|
-
-
|
|
184
|
-
-
|
|
185
|
-
-
|
|
186
|
-
-
|
|
187
|
-
-
|
|
188
|
-
-
|
|
189
|
-
-
|
|
190
|
-
-
|
|
191
|
-
-
|
|
192
|
-
-
|
|
193
|
-
-
|
|
194
|
-
-
|
|
170
|
+
- `armed` (rw) boolean state (true / false) of the alarm; writing `true` to this value will immediately turn the alarm on (without the predefined delay)
|
|
171
|
+
- `nextLevel` (ro) the ID of the next alarm level
|
|
172
|
+
- 1 = Silent
|
|
173
|
+
- 2 = Acustic
|
|
174
|
+
- 3 = Optical
|
|
175
|
+
- 4 = Internal
|
|
176
|
+
- 5 = External
|
|
177
|
+
- 6 = Remote
|
|
178
|
+
- `nextLevelDelay` (ro) the delay of the next level in seconds
|
|
179
|
+
- `nextLevelDelayTotal` (ro) the total delay of the next level in seconds
|
|
180
|
+
- `level` (ro) the ID of the current alarm level
|
|
181
|
+
- 1 = Silent
|
|
182
|
+
- 2 = Acustic
|
|
183
|
+
- 3 = Optical
|
|
184
|
+
- 4 = Internal
|
|
185
|
+
- 5 = External
|
|
186
|
+
- 6 = Remote
|
|
187
|
+
- `startTime` (ro) the timestamp when alarm started
|
|
188
|
+
- `armedDelay` (ro) the delay of the alarm control being armed
|
|
189
|
+
- `armedDelayTotal` (ro) the total delay of the alarm control being armed
|
|
190
|
+
- `sensors` (ro) the list of sensors
|
|
191
|
+
- `disabledMove` (rw) the movement is disabled (true) or not (false)
|
|
192
|
+
- `delayedOn` (wo) writing any value to this state arms the alarm with the configured delay
|
|
193
|
+
- `quit` (wo) writing any value to this state acknowledges the alarm
|
|
195
194
|
|
|
196
195
|
### Central Alarm
|
|
197
196
|
|
|
198
197
|
Provided by central burgler alarm control.
|
|
199
198
|
|
|
200
|
-
-
|
|
201
|
-
-
|
|
202
|
-
-
|
|
199
|
+
- `armed` (rw) boolean state (true / false) of the alarm; writing `true` to this value will immediately turn the alarm on (without the predefined delay)
|
|
200
|
+
- `delayedOn` (wo) writing any value to this state arms the alarm with the configured delay
|
|
201
|
+
- `quit` (wo) writing any value to this state acknowledges the alarm
|
|
203
202
|
|
|
204
203
|
### AlarmClock
|
|
205
204
|
|
|
206
205
|
Provided by alarm clock control.
|
|
207
206
|
|
|
208
|
-
-
|
|
209
|
-
-
|
|
210
|
-
-
|
|
211
|
-
-
|
|
212
|
-
-
|
|
213
|
-
-
|
|
214
|
-
-
|
|
215
|
-
-
|
|
216
|
-
-
|
|
217
|
-
-
|
|
207
|
+
- `isEnabled` (rw) boolean state (true / false) of the alarm clock
|
|
208
|
+
- `isAlarmActive` (ro) boolean (true / false) whether the alarm is currently ringing
|
|
209
|
+
- `confirmationNeeded` (ro) boolean (true / false) whether the user needs to confirm the alarm
|
|
210
|
+
- `ringingTime` (ro) countdown in seconds how long the alarm clock will be ringing until it�s going to snooze again
|
|
211
|
+
- `ringDuration` (rw) duration in seconds the alarm clock is ringing
|
|
212
|
+
- `prepareDuration` (rw) preparation time in seconds
|
|
213
|
+
- `snoozeTime` (ro) seconds until snoozing ends
|
|
214
|
+
- `snoozeDuration` (rw) duration in seconds of snoozing
|
|
215
|
+
- `snooze` (wo) writing any value to this state snoozes the current alarm
|
|
216
|
+
- `dismiss` (wo) writing any value to this state dismisses the current alarm
|
|
218
217
|
|
|
219
218
|
### AudioZone
|
|
220
219
|
|
|
221
220
|
Provided by Music Server Zone.
|
|
222
221
|
|
|
223
|
-
-
|
|
224
|
-
-
|
|
225
|
-
-
|
|
226
|
-
-
|
|
227
|
-
-
|
|
228
|
-
-
|
|
229
|
-
-
|
|
230
|
-
-
|
|
231
|
-
-
|
|
232
|
-
-
|
|
233
|
-
-
|
|
234
|
-
-
|
|
235
|
-
-
|
|
236
|
-
-
|
|
237
|
-
-
|
|
238
|
-
-
|
|
239
|
-
-
|
|
240
|
-
-
|
|
241
|
-
-
|
|
242
|
-
-
|
|
243
|
-
-
|
|
244
|
-
-
|
|
245
|
-
-
|
|
246
|
-
-
|
|
247
|
-
-
|
|
248
|
-
-
|
|
249
|
-
-
|
|
250
|
-
-
|
|
251
|
-
-
|
|
252
|
-
-
|
|
253
|
-
-
|
|
254
|
-
-
|
|
255
|
-
-
|
|
256
|
-
-
|
|
257
|
-
-
|
|
258
|
-
-
|
|
259
|
-
-
|
|
260
|
-
-
|
|
222
|
+
- `serverState` (ro) state of the music server:
|
|
223
|
+
- -3 = unknown/invalid zone
|
|
224
|
+
- -2 = not reachable
|
|
225
|
+
- -1 = unknown
|
|
226
|
+
- 0 = offline
|
|
227
|
+
- 1 = initializing (booting, trying to reach it)
|
|
228
|
+
- 2 = online
|
|
229
|
+
- `playState` (rw) the playback state:
|
|
230
|
+
- -1 = unknown (this value can't be set)
|
|
231
|
+
- 0 = stopped (setting this value will pause playback)
|
|
232
|
+
- 1 = paused (setting this value will pause playback)
|
|
233
|
+
- 2 = playing (setting this value will start/resume playback)
|
|
234
|
+
- `clientState` (ro) state of the client:
|
|
235
|
+
- 0 = offline
|
|
236
|
+
- 1 = initializing (booting, trying to reach it)
|
|
237
|
+
- 2 = online
|
|
238
|
+
- `power` (rw) whether or not the client power is active
|
|
239
|
+
- `volume` (rw) current volume
|
|
240
|
+
- `maxVolume` (ro) zones can be assigned a maximum volume
|
|
241
|
+
- `shuffle` (rw) whether or not playlist shuffle is enabled
|
|
242
|
+
- `sourceList` (ro) list containing all zone-favorites
|
|
243
|
+
- `repeat` (rw) repeat mode:
|
|
244
|
+
- -1 = unknown
|
|
245
|
+
- 0 = off
|
|
246
|
+
- 1 = repeat all
|
|
247
|
+
- 2 = -not used-
|
|
248
|
+
- 3 = repeat current item
|
|
249
|
+
- `songName` (ro) song name
|
|
250
|
+
- `duration` (ro) how long the whole track is, -1 if not known (stream)
|
|
251
|
+
- `progress` (rw) current position in the track
|
|
252
|
+
- `album` (ro) album name
|
|
253
|
+
- `artist` (ro) artist name
|
|
254
|
+
- `station` (ro) station name
|
|
255
|
+
- `genre` (ro) genre name
|
|
256
|
+
- `cover` (ro) song/album cover image URL
|
|
257
|
+
- `source` (rw) current selected source identifier (see `sourceList` above)
|
|
258
|
+
- `prev` (wo) writing any value to this state moves to the previous track
|
|
259
|
+
- `next` (wo) writing any value to this state moves to the next track
|
|
261
260
|
|
|
262
261
|
### Central Audio
|
|
263
262
|
|
|
264
263
|
Provided by central Music Server.
|
|
265
264
|
|
|
266
|
-
-
|
|
265
|
+
- `control` (wo) sets the play state of all players (`true` = play, `false` = pause)
|
|
267
266
|
|
|
268
267
|
### Colorpicker
|
|
269
268
|
|
|
270
269
|
This device only appears inside a LightController.
|
|
271
270
|
|
|
272
|
-
-
|
|
273
|
-
-
|
|
274
|
-
-
|
|
271
|
+
- `red` (rw) red value of the color picker
|
|
272
|
+
- `green` (rw) green value of the color picker
|
|
273
|
+
- `blue` (rw) blue value of the color picker
|
|
275
274
|
|
|
276
275
|
Setting one or more of the above states from ioBroker will only send a command to the Miniserver after about 100 ms.
|
|
277
276
|
This is to prevent the color from changing multiple times for a single user input.
|
|
@@ -280,9 +279,9 @@ This is to prevent the color from changing multiple times for a single user inpu
|
|
|
280
279
|
|
|
281
280
|
This device only appears inside a Light Controller V2 in Loxone software version 9 and above.
|
|
282
281
|
|
|
283
|
-
-
|
|
284
|
-
-
|
|
285
|
-
-
|
|
282
|
+
- `red` (rw) red value of the color picker
|
|
283
|
+
- `green` (rw) green value of the color picker
|
|
284
|
+
- `blue` (rw) blue value of the color picker
|
|
286
285
|
|
|
287
286
|
Setting one or more of the above states from ioBroker will only send a command to the Miniserver after about 100 ms.
|
|
288
287
|
This is to prevent the color from changing multiple times for a single user input.
|
|
@@ -291,111 +290,111 @@ This is to prevent the color from changing multiple times for a single user inpu
|
|
|
291
290
|
|
|
292
291
|
Provided by timer/schedule.
|
|
293
292
|
|
|
294
|
-
-
|
|
295
|
-
-
|
|
296
|
-
-
|
|
297
|
-
-
|
|
298
|
-
-
|
|
299
|
-
-
|
|
300
|
-
-
|
|
301
|
-
-
|
|
293
|
+
- `mode` (ro) current operating mode of the daytimer
|
|
294
|
+
- `mode-text` (ro) current operating mode name of the daytimer
|
|
295
|
+
- `override` (ro) the remaining time of the timer
|
|
296
|
+
- `value` (ro) current value, `true` or `false` for digital and a value for analog
|
|
297
|
+
- `value-formatted` (ro) current formatted value as text
|
|
298
|
+
- `needsActivation` (ro) only available if the control needs to be activated
|
|
299
|
+
- `resetActive` (ro) stays active as long as the reset input of the daytimer is active
|
|
300
|
+
- `pulse` (wo) activates the new value if an entry needs activation
|
|
302
301
|
|
|
303
302
|
### Dimmer
|
|
304
303
|
|
|
305
304
|
Provided by dimmers.
|
|
306
305
|
|
|
307
|
-
-
|
|
308
|
-
-
|
|
309
|
-
-
|
|
310
|
-
-
|
|
311
|
-
-
|
|
312
|
-
-
|
|
306
|
+
- `position` (rw) current position for the dimmer
|
|
307
|
+
- `min` (ro) current minimum value
|
|
308
|
+
- `max` (ro) current maximum value
|
|
309
|
+
- `step` (ro) current step value
|
|
310
|
+
- `on` (wo) writing any value to this state sets the dimmer to the last known position
|
|
311
|
+
- `off` (wo) writing any value to this state disables the dimmer, sets position to 0 but remembers the last position
|
|
313
312
|
|
|
314
313
|
### EIBDimmer
|
|
315
314
|
|
|
316
315
|
Provided by EIB/KNX dimmers.
|
|
317
316
|
|
|
318
|
-
-
|
|
319
|
-
-
|
|
320
|
-
-
|
|
317
|
+
- `position` (rw) current position for the dimmer
|
|
318
|
+
- `on` (wo) writing any value to this state sets the dimmer to the last known position
|
|
319
|
+
- `off` (wo) writing any value to this state disables the dimmer, sets position to 0 but remembers the last position
|
|
321
320
|
|
|
322
321
|
### Fronius
|
|
323
322
|
|
|
324
323
|
Provided by energy monitor.
|
|
325
324
|
|
|
326
|
-
-
|
|
327
|
-
-
|
|
328
|
-
-
|
|
329
|
-
-
|
|
330
|
-
-
|
|
331
|
-
-
|
|
332
|
-
-
|
|
333
|
-
-
|
|
334
|
-
-
|
|
335
|
-
-
|
|
336
|
-
-
|
|
337
|
-
-
|
|
338
|
-
-
|
|
339
|
-
-
|
|
340
|
-
-
|
|
341
|
-
-
|
|
342
|
-
-
|
|
343
|
-
-
|
|
325
|
+
- `prodCurr` (ro) current production power
|
|
326
|
+
- `prodCurrDay` (ro) energy production all over the current day
|
|
327
|
+
- `prodCurrMonth` (ro) energy production all over the current month
|
|
328
|
+
- `prodCurrYear` (ro) energy production all over the current year
|
|
329
|
+
- `prodTotal` (ro) energy production since setting up
|
|
330
|
+
- `consCurr` (ro) current consumption power
|
|
331
|
+
- `consCurrDay` (ro) energy consumed throughout the current day
|
|
332
|
+
- `consTotal` (ro) energy consumed since setting up
|
|
333
|
+
- `deliveryDay` (ro) unknown
|
|
334
|
+
- `earningsDay` (ro) how much money was earned over the current by either consuming the produced power yourself instead of consuming it from the grid, or by exporting unused produced power to the grid
|
|
335
|
+
- `earningsMonth` (ro) how much money was earned over the current month
|
|
336
|
+
- `earningsYear` (ro) how much money was earned over the current year
|
|
337
|
+
- `earningsTotal` (ro) how much money was earned since setting up
|
|
338
|
+
- `gridCurr` (ro) current grid consumption/delivery power. If negative, power is being delivered to the grid.
|
|
339
|
+
- `batteryCurr` (ro) current battery charging/usage power. If negative, the battery is charging.
|
|
340
|
+
- `stateOfCharge` (ro) represents the charging state of the battery. 100 = fully charged.
|
|
341
|
+
- `co2Factor` (ro) How much co2 does it take to produce one kWh, used to compute CO2 savings
|
|
342
|
+
- `online` (ro) true: online, false: offline
|
|
344
343
|
|
|
345
344
|
### Gate
|
|
346
345
|
|
|
347
346
|
Provided by gate controls.
|
|
348
347
|
|
|
349
|
-
-
|
|
350
|
-
-
|
|
351
|
-
-
|
|
352
|
-
-
|
|
353
|
-
-
|
|
354
|
-
-
|
|
355
|
-
-
|
|
348
|
+
- `position` (ro) the position from 1 = up to 0 = down
|
|
349
|
+
- `active` (rw) current direction of the gate movement
|
|
350
|
+
- -1 = close
|
|
351
|
+
- 0 = not moving
|
|
352
|
+
- 1 = open
|
|
353
|
+
- `preventOpen` (ro) whether preventing opening of door
|
|
354
|
+
- `preventClose` (ro) whether preventing closing of door
|
|
356
355
|
|
|
357
356
|
### Central Gate
|
|
358
357
|
|
|
359
358
|
Provided by central gate control.
|
|
360
359
|
|
|
361
|
-
-
|
|
362
|
-
-
|
|
363
|
-
-
|
|
360
|
+
- `open` (wo) opens all gates
|
|
361
|
+
- `close` (wo) closes all gates
|
|
362
|
+
- `stop` (wo) stops all gate motors
|
|
364
363
|
|
|
365
364
|
### Hourcounter
|
|
366
365
|
|
|
367
366
|
Provided by
|
|
368
367
|
|
|
369
|
-
-
|
|
370
|
-
-
|
|
371
|
-
-
|
|
372
|
-
-
|
|
373
|
-
-
|
|
374
|
-
-
|
|
375
|
-
-
|
|
376
|
-
-
|
|
377
|
-
-
|
|
378
|
-
-
|
|
379
|
-
-
|
|
380
|
-
-
|
|
381
|
-
-
|
|
382
|
-
-
|
|
368
|
+
- `total` (ro) total number of seconds the counter has been active so far
|
|
369
|
+
- `remaining` (ro) how many seconds left until the next maintenance is required
|
|
370
|
+
- `lastActivation` (ro) the timestamp when the counter was activated the last time
|
|
371
|
+
- `overdue` (ro) `false` if not overdue, otherwise maintenance is required
|
|
372
|
+
- `maintenanceInterval` (ro) seconds until the next maintenance
|
|
373
|
+
- `active` (ro) whether or not the counter is currently active
|
|
374
|
+
- `overdueSince` (ro) seconds since the maintainanceInterval was exceeded
|
|
375
|
+
- `reset` (wo) will cause a reset of the following values
|
|
376
|
+
- remaining to maintenanceInterval
|
|
377
|
+
- overdue to 0
|
|
378
|
+
- overdueSince to 0
|
|
379
|
+
- `resetAll` (wo) like `reset`, but also sets
|
|
380
|
+
- total to 0
|
|
381
|
+
- lastActivation to 0
|
|
383
382
|
|
|
384
383
|
### InfoOnlyAnalog
|
|
385
384
|
|
|
386
385
|
Provided by virtual states as well as the Loxone Touch switch.
|
|
387
386
|
|
|
388
|
-
-
|
|
389
|
-
-
|
|
387
|
+
- `value` (ro) the state value (number) of the control
|
|
388
|
+
- `value-formatted` (ro) if configured, the formatted value of the state (using the "Unit" format from Loxone Config)
|
|
390
389
|
|
|
391
390
|
### InfoOnlyDigital
|
|
392
391
|
|
|
393
392
|
Provided by virtual states as well as the Loxone Touch switch.
|
|
394
393
|
|
|
395
|
-
-
|
|
396
|
-
-
|
|
397
|
-
-
|
|
398
|
-
-
|
|
394
|
+
- `active` (ro) boolean state (true / false) of the control
|
|
395
|
+
- `active-text` (ro) if configured, the text equivalent of the state
|
|
396
|
+
- `active-image` (ro) if configured, the image equivalent of the state
|
|
397
|
+
- `active-color` (ro) if configured, the color equivalent of the state
|
|
399
398
|
|
|
400
399
|

|
|
401
400
|
|
|
@@ -403,18 +402,18 @@ Provided by virtual states as well as the Loxone Touch switch.
|
|
|
403
402
|
|
|
404
403
|
Provided by virtual text states.
|
|
405
404
|
|
|
406
|
-
-
|
|
407
|
-
-
|
|
405
|
+
- `text` (ro) the state value of the control
|
|
406
|
+
- `text-formatted` (ro) if configured, the formatted value of the state
|
|
408
407
|
|
|
409
408
|
### Intercom
|
|
410
409
|
|
|
411
410
|
Provided by door controllers.
|
|
412
411
|
|
|
413
|
-
-
|
|
414
|
-
-
|
|
415
|
-
-
|
|
416
|
-
|
|
417
|
-
-
|
|
412
|
+
- `bell` (ro) whether the bell is ringing
|
|
413
|
+
- `lastBellEvents` (ro) array containing the timestamps for each bell-activity that wasn't answered
|
|
414
|
+
- `version` (ro) Loxone Intercoms only - text containing the currently installed firmware
|
|
415
|
+
versions
|
|
416
|
+
- `answer` (wo) writing any value to this state will deactivate the bell
|
|
418
417
|
|
|
419
418
|
This type of channel might contain other devices. See the respective chapter for more information.
|
|
420
419
|
|
|
@@ -428,44 +427,44 @@ TODO: Documentation currently missing
|
|
|
428
427
|
|
|
429
428
|
Provided by different kinds of blinds (automatic and manual).
|
|
430
429
|
|
|
431
|
-
-
|
|
432
|
-
-
|
|
433
|
-
-
|
|
434
|
-
-
|
|
435
|
-
-
|
|
436
|
-
-
|
|
437
|
-
-
|
|
438
|
-
-
|
|
439
|
-
-
|
|
440
|
-
-
|
|
441
|
-
-
|
|
442
|
-
-
|
|
443
|
-
-
|
|
444
|
-
-
|
|
445
|
-
-
|
|
446
|
-
-
|
|
430
|
+
- `up` (rw) whether Jalousie is moving up
|
|
431
|
+
- `down` (rw) whether Jalousie is moving down
|
|
432
|
+
- `position` (ro) position of the Jalousie, a number from 0 to 1
|
|
433
|
+
- Jalousie upper position = 0
|
|
434
|
+
- Jalousie lower position = 1
|
|
435
|
+
- `shadePosition` (ro) shade position of the Jalousie (blinds), a number from 0 to 1
|
|
436
|
+
- Blinds are not shaded = 0
|
|
437
|
+
- Blinds are shaded = 1
|
|
438
|
+
- `safetyActive` (ro) only used by ones with Autopilot, this represents the safety shutdown
|
|
439
|
+
- `autoAllowed` (ro) only used by ones with Autopilot
|
|
440
|
+
- `autoActive` (rw) only used by ones with Autopilot
|
|
441
|
+
- `locked` (ro) only by ones with Autopilot, this represents the output QI in Loxone Config
|
|
442
|
+
- `infoText` (ro) informs e.g. on what caused the locked state, or what did cause the safety to become active.
|
|
443
|
+
- `fullUp` (wo) writing any value to this state triggers a full up motion
|
|
444
|
+
- `fullDown` (wo) writing any value to this state triggers a full down motion
|
|
445
|
+
- `shade` (wo) writing any value to this state shades the Jalousie to the perfect position
|
|
447
446
|
|
|
448
447
|
### Central Jalousie
|
|
449
448
|
|
|
450
449
|
Provided by the central blinds control.
|
|
451
450
|
|
|
452
|
-
-
|
|
453
|
-
-
|
|
454
|
-
-
|
|
455
|
-
-
|
|
451
|
+
- `autoActive` (rw) only used by ones with Autopilot
|
|
452
|
+
- `fullUp` (wo) writing any value to this state triggers a full up motion
|
|
453
|
+
- `fullDown` (wo) writing any value to this state triggers a full down motion
|
|
454
|
+
- `shade` (wo) writing any value to this state shades of all blinds to the perfect position
|
|
456
455
|
|
|
457
456
|
### Light Controller
|
|
458
457
|
|
|
459
458
|
Provided by (hotel) lighting controllers.
|
|
460
459
|
Scenes can only be modified in the Loxone applications, but can be selected in ioBroker.
|
|
461
460
|
|
|
462
|
-
-
|
|
463
|
-
-
|
|
464
|
-
-
|
|
465
|
-
-
|
|
466
|
-
-
|
|
467
|
-
-
|
|
468
|
-
-
|
|
461
|
+
- `activeScene` (rw) current active scene number
|
|
462
|
+
- 0: all off
|
|
463
|
+
- 1..8: user defined scene (definition/learning of scenes has to be done with the Loxone tools)
|
|
464
|
+
- 9: all on
|
|
465
|
+
- `sceneList` (ro) list of all scenes
|
|
466
|
+
- `plus` (wo) changes to the next scene
|
|
467
|
+
- `minus` (wo) changes to the previous scene
|
|
469
468
|
|
|
470
469
|
This type of channel might contain other devices. See the respective chapter for more information.
|
|
471
470
|
|
|
@@ -474,12 +473,12 @@ This type of channel might contain other devices. See the respective chapter for
|
|
|
474
473
|
Provided by (hotel) lighting controllers in Loxone software version 9 and above.
|
|
475
474
|
Moods can only be modified in the Loxone applications, but can be selected and combined in ioBroker.
|
|
476
475
|
|
|
477
|
-
-
|
|
478
|
-
-
|
|
479
|
-
-
|
|
480
|
-
-
|
|
481
|
-
-
|
|
482
|
-
-
|
|
476
|
+
- `moodList` (ro) list of all configured mood names
|
|
477
|
+
- `activeMoods` (rw) currently active list of mood names
|
|
478
|
+
- `favoriteMoods` (ro) list of the favorite mood names
|
|
479
|
+
- `additionalMoods` (ro) list of the non-favorite mood names
|
|
480
|
+
- `plus` (wo) changes to the next mood
|
|
481
|
+
- `minus` (wo) changes to the previous mood
|
|
483
482
|
|
|
484
483
|
This type of channel might contain other devices. See the respective chapter for more information.
|
|
485
484
|
|
|
@@ -487,182 +486,182 @@ This type of channel might contain other devices. See the respective chapter for
|
|
|
487
486
|
|
|
488
487
|
Provided by central lighting controller.
|
|
489
488
|
|
|
490
|
-
-
|
|
489
|
+
- `control` (wo) turns all lights on or off
|
|
491
490
|
|
|
492
491
|
### Mailbox
|
|
493
492
|
|
|
494
493
|
Provided by Paketsafe Air / Tree.
|
|
495
494
|
|
|
496
|
-
-
|
|
497
|
-
-
|
|
498
|
-
-
|
|
499
|
-
-
|
|
500
|
-
-
|
|
501
|
-
-
|
|
502
|
-
-
|
|
495
|
+
- `notificationsDisabledInput` (ro) State of the notifications disabled input
|
|
496
|
+
- `packetReceived` (ro) State if a packet has been received
|
|
497
|
+
- `mailReceived` (ro) State if mail has been received
|
|
498
|
+
- `disableEndTime` (ro) timestamp until the notifications are disabled
|
|
499
|
+
- `confirmPacket` (wo) Confirm receive of a packet
|
|
500
|
+
- `confirmMail` (wo) Confirm receive of mail
|
|
501
|
+
- `disableNotifications` (wo) Disable the notifications for x seconds; 0 seconds for cancelling timer
|
|
503
502
|
|
|
504
503
|
### Meter
|
|
505
504
|
|
|
506
505
|
Provided by utility meters.
|
|
507
506
|
|
|
508
|
-
-
|
|
509
|
-
-
|
|
510
|
-
-
|
|
511
|
-
-
|
|
512
|
-
-
|
|
507
|
+
- `actual` (ro) the actual value (number)
|
|
508
|
+
- `actual-formatted` (ro) if configured, the formatted actual value of the state (using the "Unit" format from Loxone Config)
|
|
509
|
+
- `total` (ro) the total value (number)
|
|
510
|
+
- `total-formatted` (ro) if configured, the formatted total value of the state (using the "Unit" format from Loxone Config)
|
|
511
|
+
- `reset` (wo) writing any value to this state resets the total value
|
|
513
512
|
|
|
514
513
|
### Presence Detector
|
|
515
514
|
|
|
516
515
|
Provided by presence detector.
|
|
517
516
|
|
|
518
|
-
-
|
|
519
|
-
-
|
|
520
|
-
-
|
|
521
|
-
-
|
|
517
|
+
- `active` (ro) presence state
|
|
518
|
+
- `locked` (ro) locked state
|
|
519
|
+
- `events` (ro) the number of events
|
|
520
|
+
- `infoText` (ro) reason why the presence detector is locked
|
|
522
521
|
|
|
523
522
|
### Pushbutton
|
|
524
523
|
|
|
525
524
|
Provided by virtual push-button inputs.
|
|
526
525
|
|
|
527
|
-
-
|
|
528
|
-
-
|
|
526
|
+
- `active` (rw) the current state of the pushbutton
|
|
527
|
+
- `pulse` (wo) writing any value to this state will simulate the button being pushed only for a very short time
|
|
529
528
|
|
|
530
529
|
### Radio
|
|
531
530
|
|
|
532
531
|
Provided by radio buttons (8x and 16x).
|
|
533
532
|
|
|
534
|
-
-
|
|
533
|
+
- `activeOutput` (rw) ID of the currently active output or 0 if none is active ("All Off")
|
|
535
534
|
|
|
536
535
|
### Remote
|
|
537
536
|
|
|
538
537
|
Provided by media controller.
|
|
539
538
|
Basic read only functionality only.
|
|
540
539
|
|
|
541
|
-
-
|
|
542
|
-
-
|
|
543
|
-
-
|
|
540
|
+
- `active` (ro) true if the Miniserver is sending the commands for switching the modes or power on
|
|
541
|
+
- `mode` (ro) the key for the current mode or 0 if no mode selected ("All Off")"
|
|
542
|
+
- `timeout` (ro) the timeout in milliseconds
|
|
544
543
|
|
|
545
544
|
### Slider
|
|
546
545
|
|
|
547
546
|
Provided by analog virtual inputs.
|
|
548
547
|
|
|
549
|
-
-
|
|
550
|
-
-
|
|
551
|
-
-
|
|
548
|
+
- `value` (rw) the current value of the slider
|
|
549
|
+
- `value-formatted` (ro) if configured, the formatted value of the state (using the "Unit" format from Loxone Config)
|
|
550
|
+
- `error` (ro) indicates an invalid value of the slider
|
|
552
551
|
|
|
553
552
|
### SmokeAlarm
|
|
554
553
|
|
|
555
554
|
Provided by utility meters.
|
|
556
555
|
|
|
557
|
-
-
|
|
558
|
-
-
|
|
559
|
-
-
|
|
560
|
-
-
|
|
561
|
-
-
|
|
562
|
-
-
|
|
563
|
-
-
|
|
564
|
-
-
|
|
565
|
-
-
|
|
566
|
-
-
|
|
567
|
-
-
|
|
568
|
-
-
|
|
569
|
-
-
|
|
570
|
-
-
|
|
571
|
-
-
|
|
572
|
-
-
|
|
573
|
-
-
|
|
574
|
-
-
|
|
575
|
-
-
|
|
576
|
-
-
|
|
577
|
-
-
|
|
578
|
-
-
|
|
579
|
-
-
|
|
580
|
-
-
|
|
581
|
-
-
|
|
582
|
-
-
|
|
583
|
-
-
|
|
584
|
-
-
|
|
585
|
-
-
|
|
586
|
-
-
|
|
587
|
-
-
|
|
556
|
+
- `nextLevel` (ro) the ID of the next alarm level
|
|
557
|
+
- 1 = Silent
|
|
558
|
+
- 2 = Acustic
|
|
559
|
+
- 3 = Optical
|
|
560
|
+
- 4 = Internal
|
|
561
|
+
- 5 = External
|
|
562
|
+
- 6 = Remote
|
|
563
|
+
- `nextLevelDelay` (ro) delay of the next level in seconds
|
|
564
|
+
- `nextLevelDelayTotal` (ro) total delay of the next level in seconds
|
|
565
|
+
- `level` (ro) the ID of the current alarm level
|
|
566
|
+
- 1 = Silent
|
|
567
|
+
- 2 = Acustic
|
|
568
|
+
- 3 = Optical
|
|
569
|
+
- 4 = Internal
|
|
570
|
+
- 5 = External
|
|
571
|
+
- 6 = Remote
|
|
572
|
+
- `sensors` (ro) the list of sensors
|
|
573
|
+
- `acousticAlarm` (ro) state of the acoustic alarm false for not active and true for active
|
|
574
|
+
- `testAlarm` (ro) whether testalarm is active
|
|
575
|
+
- `alarmCause` (ro) the cause of the alarm:
|
|
576
|
+
- 1 = smoke detector only
|
|
577
|
+
- 2 = water only
|
|
578
|
+
- 3 = smoke and water
|
|
579
|
+
- 4 = temperature only
|
|
580
|
+
- 5 = fire and temperature
|
|
581
|
+
- 6 = temperature and water
|
|
582
|
+
- 7 = fire, temperature and water
|
|
583
|
+
- `startTime` (ro) timestamp when alarm started
|
|
584
|
+
- `timeServiceMode` (rw) delay until service mode is disabled
|
|
585
|
+
- `mute` (wo) writing any value to this state mutes the sirene
|
|
586
|
+
- `quit` (wo) writing any value to this state acknowledges the smoke alarm
|
|
588
587
|
|
|
589
588
|
### Switch
|
|
590
589
|
|
|
591
590
|
Provided by virtual input switches.
|
|
592
591
|
|
|
593
|
-
-
|
|
592
|
+
- `active` (rw) the current state of the switch
|
|
594
593
|
|
|
595
594
|
### Text State
|
|
596
595
|
|
|
597
596
|
Provided by "state".
|
|
598
597
|
|
|
599
|
-
-
|
|
598
|
+
- `textAndIcon` (ro) the current value of the state
|
|
600
599
|
|
|
601
600
|
### TimedSwitch
|
|
602
601
|
|
|
603
602
|
Provided by stairwell and multifunction switches.
|
|
604
603
|
|
|
605
|
-
-
|
|
606
|
-
-
|
|
607
|
-
-
|
|
608
|
-
-
|
|
609
|
-
-
|
|
610
|
-
-
|
|
611
|
-
-
|
|
612
|
-
-
|
|
613
|
-
-
|
|
614
|
-
-
|
|
615
|
-
-
|
|
616
|
-
-
|
|
617
|
-
-
|
|
618
|
-
-
|
|
619
|
-
-
|
|
620
|
-
-
|
|
621
|
-
-
|
|
604
|
+
- `deactivationDelayTotal` (ro) seconds, how long the output will be active if the timer is used
|
|
605
|
+
- `deactivationDelay` (ro) countdown until the output is deactivated
|
|
606
|
+
- 0 = the output is turned off
|
|
607
|
+
- -1 = the output is permanently on
|
|
608
|
+
- otherwise it will count down from deactivationDelayTotal
|
|
609
|
+
- `on` (wo) writing any value to this state enables the switch permanently without deactivation delay
|
|
610
|
+
- `off` (wo) writing any value to this state disables the switch
|
|
611
|
+
- `pulse` (wo) pulses the switch:
|
|
612
|
+
- deactivationDelay = 0
|
|
613
|
+
- Will start the countdown, from deactivationDelayTotal to 0
|
|
614
|
+
- if this is a stairwell switch:
|
|
615
|
+
- deactivationDelay = -1
|
|
616
|
+
- No effect, will remain permanently on.
|
|
617
|
+
- deactivationDelay > 0
|
|
618
|
+
- Restarts the countdown
|
|
619
|
+
- if this is a multifunction switch
|
|
620
|
+
- turns it off (from countdown or permanent on state)
|
|
622
621
|
|
|
623
622
|
### Tracker
|
|
624
623
|
|
|
625
624
|
Provided by stairwell and multifunction switches.
|
|
626
625
|
|
|
627
|
-
-
|
|
626
|
+
- `entries` (ro) list of entries returned from the miniserver
|
|
628
627
|
|
|
629
628
|
### UpDownAnalog
|
|
630
629
|
|
|
631
630
|
Provided by Virtual Input (Up-Down buttons).
|
|
632
631
|
|
|
633
|
-
-
|
|
634
|
-
-
|
|
635
|
-
-
|
|
632
|
+
- `value` (rw) the current value of the input
|
|
633
|
+
- `value-formatted` (ro) if configured, the formatted value of the state (using the "Unit" format from Loxone Config)
|
|
634
|
+
- `error` (ro) indicates an invalid value of the slider
|
|
636
635
|
|
|
637
636
|
### ValueSelector
|
|
638
637
|
|
|
639
638
|
Value selection.
|
|
640
639
|
|
|
641
|
-
-
|
|
642
|
-
-
|
|
643
|
-
-
|
|
644
|
-
-
|
|
640
|
+
- `value` (rw) current value
|
|
641
|
+
- `min` (ro) current minimum value
|
|
642
|
+
- `max` (ro) current maximum value
|
|
643
|
+
- `step` (ro) current step value
|
|
645
644
|
|
|
646
645
|
### WindowMonitor
|
|
647
646
|
|
|
648
647
|
Provided by utility meters.
|
|
649
648
|
|
|
650
|
-
-
|
|
651
|
-
-
|
|
652
|
-
-
|
|
653
|
-
-
|
|
654
|
-
-
|
|
655
|
-
-
|
|
649
|
+
- `numOpen` (ro) number of open windows & doors
|
|
650
|
+
- `numClosed` (ro) number of closed windows & doors
|
|
651
|
+
- `numTilted` (ro) number of tilted windows & doors
|
|
652
|
+
- `numOffline` (ro) number of windows & doors that are not available
|
|
653
|
+
- `numLocked` (ro) number of locked windows & doors
|
|
654
|
+
- `numUnlocked` (ro) number of unlocked windows & doors
|
|
656
655
|
|
|
657
656
|
The sum of the values from all these states is equal to the number of windows & doors monitored.? The windows/doors with two states will always be counted to the "worst" state.
|
|
658
657
|
|
|
659
658
|
For each monitored window / door there will be a device with an index as its ID and the given name. They have the following states:
|
|
660
659
|
|
|
661
|
-
-
|
|
662
|
-
-
|
|
663
|
-
-
|
|
664
|
-
-
|
|
665
|
-
-
|
|
660
|
+
- `closed` (ro) the window / door is closed
|
|
661
|
+
- `tilted` (ro) the window / door is tilted
|
|
662
|
+
- `open` (ro) the window / door is open
|
|
663
|
+
- `locked` (ro) the window / door is locked
|
|
664
|
+
- `unlocked` (ro) the window / door is unlocked
|
|
666
665
|
|
|
667
666
|
## Weather Server
|
|
668
667
|
|
|
@@ -670,30 +669,30 @@ The weather server information is provided as a device with multiple channels.
|
|
|
670
669
|
The device is called `WeatherServer`.
|
|
671
670
|
It contains:
|
|
672
671
|
|
|
673
|
-
-
|
|
674
|
-
-
|
|
672
|
+
- the channel `Actual` with the current weather values
|
|
673
|
+
- one channel for each forecast hour called `HourXX` where `XX` is the number of hours from now
|
|
675
674
|
|
|
676
675
|
Every channel contains the following states:
|
|
677
676
|
|
|
678
|
-
-
|
|
679
|
-
-
|
|
680
|
-
-
|
|
681
|
-
-
|
|
682
|
-
-
|
|
683
|
-
-
|
|
684
|
-
-
|
|
685
|
-
-
|
|
686
|
-
-
|
|
687
|
-
-
|
|
688
|
-
-
|
|
689
|
-
-
|
|
690
|
-
-
|
|
691
|
-
-
|
|
692
|
-
-
|
|
693
|
-
-
|
|
694
|
-
-
|
|
695
|
-
-
|
|
696
|
-
-
|
|
677
|
+
- `barometricPressure`: numeric barometric pressure value
|
|
678
|
+
- `barometricPressure-formatted`: formatted barometric pressure value with unit
|
|
679
|
+
- `dewPoint`: numeric dew point value
|
|
680
|
+
- `dewPoint-formatted`: formatted dew point value with unit
|
|
681
|
+
- `perceivedTemperature`: numeric perceived temperature value
|
|
682
|
+
- `perceivedTemperature-formatted`: formatted perceived temperature value with unit
|
|
683
|
+
- `precipitation`: numeric precipitation value
|
|
684
|
+
- `precipitation-formatted`: formatted precipitation value with unit
|
|
685
|
+
- `relativeHumidity`: numeric relative humidity value
|
|
686
|
+
- `relativeHumidity-formatted`: formatted relative humidity value with unit
|
|
687
|
+
- `solarRadiation`: solar radiation value
|
|
688
|
+
- `temperature`: numeric temperature value
|
|
689
|
+
- `temperature-formatted`: formatted temperature value with unit
|
|
690
|
+
- `timestamp`: timestamp of the data as `value.time` (JavaScript time)
|
|
691
|
+
- `weatherType`: numeric weather type enumeration value
|
|
692
|
+
- `weatherType-text`: text representation of the weather type
|
|
693
|
+
- `windDirection`: wind direction value
|
|
694
|
+
- `windSpeed`: wind speed value
|
|
695
|
+
- `windSpeed-formatted`: formatted wind speed value with unit
|
|
697
696
|
|
|
698
697
|
## Unsupported Control Types
|
|
699
698
|
|
|
@@ -727,136 +726,143 @@ Native value from ioBroker > Objects
|
|
|
727
726
|
Placeholder for the next version (at the beginning of the line):
|
|
728
727
|
### **WORK IN PROGRESS**
|
|
729
728
|
-->
|
|
729
|
+
### 4.0.0 (2025-12-11)
|
|
730
|
+
|
|
731
|
+
- (raintonr) Set correct min/max target on IRCv2 when in override (#528)
|
|
732
|
+
- (raintonr) Fix compatibility with js-controller 7.1 (fixes #730)
|
|
733
|
+
- (UncleSamSwiss) Recreate project structure using latest create-adapter
|
|
734
|
+
- (mpaulustsx) Basic AudioZoneV2 implementation (#430)
|
|
735
|
+
|
|
730
736
|
### 3.0.1 (2023-03-30)
|
|
731
737
|
|
|
732
|
-
-
|
|
733
|
-
-
|
|
734
|
-
-
|
|
735
|
-
-
|
|
736
|
-
-
|
|
737
|
-
-
|
|
738
|
+
- (raintonr) Added info statistics (#364)
|
|
739
|
+
- (raintonr) Added missing states from IRCv2 (#365)
|
|
740
|
+
- (raintonr) Added basic functionality for Remote (Media Controller)
|
|
741
|
+
- (raintonr) Fixed ack overwrites of fast changing states (#399) and general ack improvements
|
|
742
|
+
- (raintonr) Fix crash when state changes occur during Miniserver reboot or otherwise unavailable (#298)
|
|
743
|
+
- (raintonr) Release script and other dependency updates
|
|
738
744
|
|
|
739
745
|
### 3.0.0 (2021-12-29)
|
|
740
746
|
|
|
741
|
-
-
|
|
742
|
-
-
|
|
747
|
+
- (tdesmet) Changed to lxcommunicator (fixes #210)
|
|
748
|
+
- (UncleSamSwiss) Updated all dependencies
|
|
743
749
|
|
|
744
750
|
### 2.2.3 (2021-07-06)
|
|
745
751
|
|
|
746
|
-
-
|
|
752
|
+
- (UncleSamSwiss) Reduced number of Sentry reports for unsupported controls.
|
|
747
753
|
|
|
748
754
|
### 2.2.2 (2021-06-23)
|
|
749
755
|
|
|
750
|
-
-
|
|
751
|
-
-
|
|
752
|
-
-
|
|
753
|
-
-
|
|
754
|
-
-
|
|
755
|
-
-
|
|
756
|
-
-
|
|
757
|
-
-
|
|
756
|
+
- (UncleSamSwiss) Explicitly setting adapter tier to 2.
|
|
757
|
+
- (UncleSamSwiss) Added support for Daytimer (IOBROKER-LOXONE-1Z)
|
|
758
|
+
- (UncleSamSwiss) Added support for Radio (IOBROKER-LOXONE-21)
|
|
759
|
+
- (UncleSamSwiss) Added support for Fronius (IOBROKER-LOXONE-1Y)
|
|
760
|
+
- (UncleSamSwiss) Added support for IRCDaytimer (IOBROKER-LOXONE-27)
|
|
761
|
+
- (UncleSamSwiss) Added support for Hourcounter (IOBROKER-LOXONE-23)
|
|
762
|
+
- (UncleSamSwiss) Added support for InfoOnlyText (IOBROKER-LOXONE-29)
|
|
763
|
+
- (UncleSamSwiss) Fixed issues with Lumitech color pickers (#150)
|
|
758
764
|
|
|
759
765
|
### 2.2.1 (2021-05-18)
|
|
760
766
|
|
|
761
|
-
-
|
|
762
|
-
-
|
|
767
|
+
- (UncleSamSwiss) Fixed typo causing "Cannot read property 'off' of undefined" (IOBROKER-LOXONE-2R, #72)
|
|
768
|
+
- (UncleSamSwiss) Improved Sentry reporting for structure file
|
|
763
769
|
|
|
764
770
|
### 2.2.0 (2021-05-17)
|
|
765
771
|
|
|
766
|
-
-
|
|
767
|
-
-
|
|
768
|
-
-
|
|
769
|
-
-
|
|
770
|
-
-
|
|
771
|
-
-
|
|
772
|
-
-
|
|
773
|
-
-
|
|
774
|
-
-
|
|
775
|
-
-
|
|
776
|
-
-
|
|
777
|
-
-
|
|
778
|
-
-
|
|
779
|
-
-
|
|
772
|
+
- (UncleSamSwiss) Unknown/unsupported controls are now shown with their states as read-only strings
|
|
773
|
+
- (raintonr) Fixes for auto-position based on percentage (#76)
|
|
774
|
+
- (raintonr) Added support for IRoomControllerV2 (#22)
|
|
775
|
+
- (UncleSamSwiss) Added experimental support for EIBDimmer (#15)
|
|
776
|
+
- (UncleSamSwiss) Added support for ValueSelector (#36)
|
|
777
|
+
- (UncleSamSwiss) Added support for TextState (#73)
|
|
778
|
+
- (UncleSamSwiss) Added support for UpDownAnalog (#57)
|
|
779
|
+
- (UncleSamSwiss) Fixed some "State has wrong type" warnings (#99, #128)
|
|
780
|
+
- (UncleSamSwiss) Added support for Lumitech color picker (#44)
|
|
781
|
+
- (UncleSamSwiss) Weather server data can now be filtered (#131)
|
|
782
|
+
- (UncleSamSwiss) Added support for PresenceDetector (IOBROKER-LOXONE-1R)
|
|
783
|
+
- (UncleSamSwiss) Added support for AAL Smart Alarm (IOBROKER-LOXONE-1X)
|
|
784
|
+
- (UncleSamSwiss) Added support for AAL Emergency Button (IOBROKER-LOXONE-1W)
|
|
785
|
+
- (UncleSamSwiss) Added support for Paketsafe (IOBROKER-LOXONE-1P)
|
|
780
786
|
|
|
781
787
|
### 2.1.0 (2020-12-21)
|
|
782
788
|
|
|
783
|
-
-
|
|
784
|
-
-
|
|
785
|
-
-
|
|
786
|
-
-
|
|
787
|
-
-
|
|
789
|
+
- (raintonr) Fixed: activeMoods can get stuck/not sync properly; all events is now handled with a queue (#58, #61, #62)
|
|
790
|
+
- (raintonr) Added open/close buttons to Garage/Gate Control (#59, #60)
|
|
791
|
+
- (pinkit) Added support for virtual text inputs (#48)
|
|
792
|
+
- (UncleSamSwiss) Updated to the latest adapter template
|
|
793
|
+
- (UncleSamSwiss) Changed log level of "Currently unsupported control type" message to "info" (#65)
|
|
788
794
|
|
|
789
795
|
### 2.0.2 (2020-10-26)
|
|
790
796
|
|
|
791
|
-
-
|
|
792
|
-
-
|
|
793
|
-
-
|
|
797
|
+
- (UncleSamSwiss) Fixed color picker updates (#52)
|
|
798
|
+
- (UncleSamSwiss) TimedSwitch to have `on`/`off` instead of `active` (#53)
|
|
799
|
+
- (UncleSamSwiss) Cleaning illegal characters for room and function names (#54)
|
|
794
800
|
|
|
795
801
|
### 2.0.1 (2020-09-24)
|
|
796
802
|
|
|
797
|
-
-
|
|
798
|
-
-
|
|
799
|
-
-
|
|
803
|
+
- (UncleSamSwiss) Fixed percentage states always showing 0% (#49)
|
|
804
|
+
- (UncleSamSwiss) Fixed analog virtual inputs wouldn't set the value 0 from ioBroker (#47)
|
|
805
|
+
- (UncleSamSwiss) Added translations to package information.
|
|
800
806
|
|
|
801
807
|
### 2.0.0
|
|
802
808
|
|
|
803
|
-
-
|
|
804
|
-
-
|
|
809
|
+
- **BREAKING:** Since the password is now encrypted, you will need to enter the password again after an update to this version!
|
|
810
|
+
- (UncleSamSwiss) Updated to the latest development tools and changed to the TypeScript language
|
|
805
811
|
|
|
806
812
|
### 1.1.0
|
|
807
813
|
|
|
808
|
-
-
|
|
809
|
-
-
|
|
810
|
-
-
|
|
814
|
+
- (UncleSamSwiss) Added support for Miniserver Gen 2
|
|
815
|
+
- (sstroot) RGB for LightControllerV2
|
|
816
|
+
- (Apollon77) Updated CI Testing
|
|
811
817
|
|
|
812
818
|
### 1.0.0
|
|
813
819
|
|
|
814
|
-
-
|
|
815
|
-
-
|
|
816
|
-
-
|
|
817
|
-
-
|
|
818
|
-
-
|
|
820
|
+
- (UncleSamSwiss) Fixed issue that was resetting the custom settings and cloud smartName
|
|
821
|
+
- (alladdin) Fixed connection issues with Loxone Miniserver 10
|
|
822
|
+
- (UncleSamSwiss) Changed all write-only "switch"es to "button"s
|
|
823
|
+
- (UncleSamSwiss) Added support for AlarmClock control
|
|
824
|
+
- (Apollon77) Updated CI Testing
|
|
819
825
|
|
|
820
826
|
### 0.4.0
|
|
821
827
|
|
|
822
|
-
-
|
|
823
|
-
-
|
|
828
|
+
- (UncleSamSwiss) Improved support for Loxone Config 9
|
|
829
|
+
- (UncleSamSwiss) Changed all color choosers (i.e. color lights) to use RGB (previously HSV/HSL was completely wrong)
|
|
824
830
|
|
|
825
831
|
### 0.3.0
|
|
826
832
|
|
|
827
|
-
-
|
|
833
|
+
- (UncleSamSwiss) Control names only synchronized on the first time by default (configurable); users can change control names the way they want
|
|
828
834
|
|
|
829
835
|
### 0.2.1
|
|
830
836
|
|
|
831
|
-
-
|
|
837
|
+
- (UncleSamSwiss) Added support for Slider control
|
|
832
838
|
|
|
833
839
|
### 0.2.0
|
|
834
840
|
|
|
835
|
-
-
|
|
841
|
+
- (UncleSamSwiss) Added proper support for Alexa for the following controls: Alarm, AudioZone, Gate, Jalousie and LightController
|
|
836
842
|
|
|
837
843
|
### 0.1.1
|
|
838
844
|
|
|
839
|
-
-
|
|
845
|
+
- (UncleSamSwiss) Added support for synchronizing rooms and functions (categories) from Loxone Miniserver
|
|
840
846
|
|
|
841
847
|
### 0.1.0
|
|
842
848
|
|
|
843
|
-
-
|
|
849
|
+
- (UncleSamSwiss) Added support for many more controls including commands from ioBroker to Loxone Miniserver
|
|
844
850
|
|
|
845
851
|
### 0.0.3
|
|
846
852
|
|
|
847
|
-
-
|
|
853
|
+
- (Bluefox) Formatting, refactoring and Russian translations
|
|
848
854
|
|
|
849
855
|
### 0.0.2
|
|
850
856
|
|
|
851
|
-
-
|
|
857
|
+
- (UncleSamSwiss) Added creation of an empty device for all unsupported controls (helps figure out its configuration)
|
|
852
858
|
|
|
853
859
|
### 0.0.1
|
|
854
860
|
|
|
855
|
-
-
|
|
861
|
+
- (UncleSamSwiss) Initial version
|
|
856
862
|
|
|
857
863
|
## License
|
|
858
864
|
|
|
859
|
-
Copyright
|
|
865
|
+
Copyright 2025 UncleSamSwiss
|
|
860
866
|
|
|
861
867
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
862
868
|
you may not use this file except in compliance with the License.
|