iobroker.loxone 3.0.0 → 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.
Files changed (183) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +425 -402
  3. package/admin/i18n/de.json +15 -0
  4. package/admin/i18n/en.json +15 -0
  5. package/admin/i18n/es.json +18 -0
  6. package/admin/i18n/fr.json +18 -0
  7. package/admin/i18n/it.json +18 -0
  8. package/admin/i18n/nl.json +18 -0
  9. package/admin/i18n/pl.json +18 -0
  10. package/admin/i18n/pt.json +18 -0
  11. package/admin/i18n/ru.json +18 -0
  12. package/admin/i18n/uk.json +18 -0
  13. package/admin/i18n/zh-cn.json +18 -0
  14. package/admin/jsonConfig.json +96 -0
  15. package/io-package.json +309 -349
  16. package/package.json +42 -46
  17. package/src/controls/AalEmergency.ts +90 -0
  18. package/src/controls/AalSmartAlarm.ts +99 -0
  19. package/src/controls/Alarm.ts +146 -0
  20. package/src/controls/AlarmClock.ts +137 -0
  21. package/src/controls/Application.ts +13 -0
  22. package/src/controls/AudioZone.ts +227 -0
  23. package/src/controls/AudioZoneV2.ts +135 -0
  24. package/src/controls/CentralAlarm.ts +59 -0
  25. package/src/controls/CentralAudioZone.ts +41 -0
  26. package/src/controls/CentralGate.ts +53 -0
  27. package/src/controls/CentralJalousie.ts +67 -0
  28. package/src/controls/CentralLightController.ts +45 -0
  29. package/src/controls/ColorPickerV2.ts +34 -0
  30. package/src/controls/Colorpicker.ts +30 -0
  31. package/src/controls/ColorpickerBase.ts +326 -0
  32. package/src/controls/Daytimer.ts +201 -0
  33. package/src/controls/Dimmer.ts +64 -0
  34. package/src/controls/EIBDimmer.ts +61 -0
  35. package/src/controls/Fronius.ts +217 -0
  36. package/src/controls/Gate.ts +150 -0
  37. package/src/controls/Hourcounter.ts +115 -0
  38. package/src/controls/IRCDaytimer.ts +4 -0
  39. package/src/controls/IRCV2Daytimer.ts +4 -0
  40. package/src/controls/IRoomControllerV2.ts +595 -0
  41. package/src/controls/InfoOnlyAnalog.ts +56 -0
  42. package/src/controls/InfoOnlyDigital.ts +95 -0
  43. package/src/controls/InfoOnlyText.ts +52 -0
  44. package/{build/controls/Intercom.js → src/controls/Intercom.ts} +27 -11
  45. package/src/controls/Jalousie.ts +219 -0
  46. package/src/controls/LightController.ts +112 -0
  47. package/src/controls/LightControllerV2.ts +246 -0
  48. package/src/controls/MailBox.ts +92 -0
  49. package/src/controls/Meter.ts +94 -0
  50. package/src/controls/None.ts +29 -0
  51. package/src/controls/PresenceDetector.ts +47 -0
  52. package/src/controls/Pushbutton.ts +55 -0
  53. package/src/controls/Radio.ts +61 -0
  54. package/src/controls/Remote.ts +44 -0
  55. package/src/controls/Slider.ts +78 -0
  56. package/src/controls/SmokeAlarm.ts +163 -0
  57. package/src/controls/Switch.ts +46 -0
  58. package/src/controls/SystemScheme.ts +13 -0
  59. package/src/controls/TextInput.ts +96 -0
  60. package/src/controls/TextState.ts +37 -0
  61. package/src/controls/TimedSwitch.ts +75 -0
  62. package/src/controls/Tracker.ts +30 -0
  63. package/{build/controls/Unknown.js → src/controls/Unknown.ts} +19 -13
  64. package/src/controls/UpDownAnalog.ts +78 -0
  65. package/{build/controls/ValueSelector.js → src/controls/ValueSelector.ts} +21 -9
  66. package/src/controls/WindowMonitor.ts +139 -0
  67. package/src/controls/all-controls.ts +99 -0
  68. package/src/controls/control-base.ts +28 -0
  69. package/src/lib/adapter-config.d.ts +22 -0
  70. package/src/loxone-handler-base.ts +285 -0
  71. package/src/lxcommunicator.d.ts +1 -0
  72. package/src/main.test.ts +24 -0
  73. package/src/main.ts +1178 -0
  74. package/src/structure-file.d.ts +154 -0
  75. package/src/weather-server-handler.ts +266 -0
  76. package/admin/admin.d.ts +0 -58
  77. package/admin/index_m.html +0 -126
  78. package/admin/style.css +0 -32
  79. package/admin/words.js +0 -25
  80. package/build/controls/AalEmergency.js +0 -45
  81. package/build/controls/AalEmergency.js.map +0 -1
  82. package/build/controls/AalSmartAlarm.js +0 -48
  83. package/build/controls/AalSmartAlarm.js.map +0 -1
  84. package/build/controls/Alarm.js +0 -81
  85. package/build/controls/Alarm.js.map +0 -1
  86. package/build/controls/AlarmClock.js +0 -59
  87. package/build/controls/AlarmClock.js.map +0 -1
  88. package/build/controls/Application.js +0 -11
  89. package/build/controls/Application.js.map +0 -1
  90. package/build/controls/AudioZone.js +0 -116
  91. package/build/controls/AudioZone.js.map +0 -1
  92. package/build/controls/CentralAlarm.js +0 -30
  93. package/build/controls/CentralAlarm.js.map +0 -1
  94. package/build/controls/CentralAudioZone.js +0 -22
  95. package/build/controls/CentralAudioZone.js.map +0 -1
  96. package/build/controls/CentralGate.js +0 -30
  97. package/build/controls/CentralGate.js.map +0 -1
  98. package/build/controls/CentralJalousie.js +0 -39
  99. package/build/controls/CentralJalousie.js.map +0 -1
  100. package/build/controls/CentralLightController.js +0 -27
  101. package/build/controls/CentralLightController.js.map +0 -1
  102. package/build/controls/ColorPickerV2.js +0 -24
  103. package/build/controls/ColorPickerV2.js.map +0 -1
  104. package/build/controls/Colorpicker.js +0 -20
  105. package/build/controls/Colorpicker.js.map +0 -1
  106. package/build/controls/ColorpickerBase.js +0 -263
  107. package/build/controls/ColorpickerBase.js.map +0 -1
  108. package/build/controls/Daytimer.js +0 -119
  109. package/build/controls/Daytimer.js.map +0 -1
  110. package/build/controls/Dimmer.js +0 -34
  111. package/build/controls/Dimmer.js.map +0 -1
  112. package/build/controls/EIBDimmer.js +0 -31
  113. package/build/controls/EIBDimmer.js.map +0 -1
  114. package/build/controls/Fronius.js +0 -64
  115. package/build/controls/Fronius.js.map +0 -1
  116. package/build/controls/Gate.js +0 -109
  117. package/build/controls/Gate.js.map +0 -1
  118. package/build/controls/Hourcounter.js +0 -46
  119. package/build/controls/Hourcounter.js.map +0 -1
  120. package/build/controls/IRCDaytimer.js +0 -9
  121. package/build/controls/IRCDaytimer.js.map +0 -1
  122. package/build/controls/IRoomControllerV2.js +0 -272
  123. package/build/controls/IRoomControllerV2.js.map +0 -1
  124. package/build/controls/InfoOnlyAnalog.js +0 -38
  125. package/build/controls/InfoOnlyAnalog.js.map +0 -1
  126. package/build/controls/InfoOnlyDigital.js +0 -65
  127. package/build/controls/InfoOnlyDigital.js.map +0 -1
  128. package/build/controls/InfoOnlyText.js +0 -35
  129. package/build/controls/InfoOnlyText.js.map +0 -1
  130. package/build/controls/Intercom.js.map +0 -1
  131. package/build/controls/Jalousie.js +0 -156
  132. package/build/controls/Jalousie.js.map +0 -1
  133. package/build/controls/LightController.js +0 -68
  134. package/build/controls/LightController.js.map +0 -1
  135. package/build/controls/LightControllerV2.js +0 -195
  136. package/build/controls/LightControllerV2.js.map +0 -1
  137. package/build/controls/MailBox.js +0 -41
  138. package/build/controls/MailBox.js.map +0 -1
  139. package/build/controls/Meter.js +0 -52
  140. package/build/controls/Meter.js.map +0 -1
  141. package/build/controls/None.js +0 -23
  142. package/build/controls/None.js.map +0 -1
  143. package/build/controls/PresenceDetector.js +0 -29
  144. package/build/controls/PresenceDetector.js.map +0 -1
  145. package/build/controls/Pushbutton.js +0 -38
  146. package/build/controls/Pushbutton.js.map +0 -1
  147. package/build/controls/Radio.js +0 -42
  148. package/build/controls/Radio.js.map +0 -1
  149. package/build/controls/Slider.js +0 -44
  150. package/build/controls/Slider.js.map +0 -1
  151. package/build/controls/SmokeAlarm.js +0 -85
  152. package/build/controls/SmokeAlarm.js.map +0 -1
  153. package/build/controls/Switch.js +0 -34
  154. package/build/controls/Switch.js.map +0 -1
  155. package/build/controls/SystemScheme.js +0 -11
  156. package/build/controls/SystemScheme.js.map +0 -1
  157. package/build/controls/TextInput.js +0 -55
  158. package/build/controls/TextInput.js.map +0 -1
  159. package/build/controls/TextState.js +0 -20
  160. package/build/controls/TextState.js.map +0 -1
  161. package/build/controls/TimedSwitch.js +0 -36
  162. package/build/controls/TimedSwitch.js.map +0 -1
  163. package/build/controls/Tracker.js +0 -20
  164. package/build/controls/Tracker.js.map +0 -1
  165. package/build/controls/Unknown.js.map +0 -1
  166. package/build/controls/UpDownAnalog.js +0 -44
  167. package/build/controls/UpDownAnalog.js.map +0 -1
  168. package/build/controls/ValueSelector.js.map +0 -1
  169. package/build/controls/WindowMonitor.js +0 -84
  170. package/build/controls/WindowMonitor.js.map +0 -1
  171. package/build/controls/control-base.js +0 -12
  172. package/build/controls/control-base.js.map +0 -1
  173. package/build/loxone-handler-base.js +0 -186
  174. package/build/loxone-handler-base.js.map +0 -1
  175. package/build/main.js +0 -643
  176. package/build/main.js.map +0 -1
  177. package/build/weather-server-handler.js +0 -120
  178. package/build/weather-server-handler.js.map +0 -1
  179. package/doc/details-missing-control-type.png +0 -0
  180. package/doc/log-missing-control-type.png +0 -0
  181. package/doc/loxone-config-display-diagnostics.png +0 -0
  182. package/doc/loxone-config-info-only-digital.png +0 -0
  183. 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
- [![NPM version](http://img.shields.io/npm/v/iobroker.loxone.svg)](https://www.npmjs.com/package/iobroker.loxone)
5
+ [![NPM version](https://img.shields.io/npm/v/iobroker.loxone.svg)](https://www.npmjs.com/package/iobroker.loxone)
6
6
  [![Downloads](https://img.shields.io/npm/dm/iobroker.loxone.svg)](https://www.npmjs.com/package/iobroker.loxone)
7
- ![Number of Installations (latest)](http://iobroker.live/badges/loxone-installed.svg)
8
- ![Number of Installations (stable)](http://iobroker.live/badges/loxone-stable.svg)
9
- [![Dependency Status](https://img.shields.io/david/UncleSamSwiss/iobroker.loxone.svg)](https://david-dm.org/UncleSamSwiss/iobroker.loxone)
7
+ ![Number of Installations](https://iobroker.live/badges/loxone-installed.svg)
8
+ ![Current version in stable repository](https://iobroker.live/badges/loxone-stable.svg)
10
9
  [![Translation status](https://weblate.iobroker.net/widgets/adapters/-/loxone/svg-badge.svg)](https://weblate.iobroker.net/engage/adapters/?utm_source=widget)
11
10
 
12
11
  [![NPM](https://nodei.co/npm/iobroker.loxone.png?downloads=true)](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 10.x!_**
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
- - "Don't synchronize weather data" will not synchronize anything related to the Weather Server
77
- - "Synchronize current weather only" will synchronize the data under "Actual"
78
- - "Synchronize 24 hours of weather forcast" will synchronize the current weather and 24 hours of weather forcast
79
- - "Synchronize entire weather forcast" will synchronize the current weather and the entire weather forcast (96 hours)
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
- - `<instance>` is the ioBroker adapter instance index (usually "0")
88
- - `<control>` is the UUID of the control
89
- - `<state>` is the state within the control (see [Supported Control Types](#supported-control-types) for more information).
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
- - `operatingMode`: the current operating mode number of the Loxone Miniserver
119
- - `operatingMode-text`: the current operating mode of the Loxone Miniserver as text
120
- - `sunrise`: the number of minutes after midnight when the sun rises today
121
- - `sunset`: the number of minutes after midnight when the sun goes down today
122
- - `notifications`: the number of notifications
123
- - `modifications`: the number of modifications
124
- - all other global states are simply reported as texts
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
- - `(rw)`: readable and writable: this state can be changed from ioBroker
133
- - `(ro)`: read-only: this state can't be changed from ioBroker
134
- - `(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
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
- - `alarmLevel` (ro) the ID of the current alarm level
141
- - 0 = No alarm
142
- - 1 = Immediate alarm
143
- - 2 = Delayed alarm
144
- - `alarmCause` (ro) A string representing the last cause for an alarm
145
- - `isLocked` (ro) Reset active, inputs will be ignored and therefore no alarms will be executed
146
- - `isLeaveActive` (ro) Leave input is set, no alarms will be executed
147
- - `disableEndTime` (ro) End time for the control to be disabled
148
- - `confirm` (wo) Confirm pending alarm
149
- - `disable` (wo) Disable control for a certain period of time, no alarms will be executed. Setting it to 0 will reenable the Smart Alarm
150
- - `startDrill` (wo) Execute test alarm
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
- - `status` (ro) the ID of the current status
157
- - 0 = running, normal operation, waiting for emergency button press
158
- - 1 = alarm triggered
159
- - 2 = reset input in config asserted, control is shut down
160
- - 3 = app has temporarily disabled control
161
- - `disableEndTime` (ro) End time for the control to be disabled
162
- - `resetActive` (ro) text state with the active reset input (if control is in reset)
163
- - `trigger` (wo) trigger an alarm from the app
164
- - `quit` (wo) quit an active alarm
165
- - `disable` (wo) disable the control for the given time in seconds. Set to 0 to start control again if it is disabled
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
- - `armed` (rw) boolean state (true / false) of the alarm; writing `true` to this value will immediately turn the alarm on (without the predefined delay)
172
- - `nextLevel` (ro) the ID of the next alarm level
173
- - 1 = Silent
174
- - 2 = Acustic
175
- - 3 = Optical
176
- - 4 = Internal
177
- - 5 = External
178
- - 6 = Remote
179
- - `nextLevelDelay` (ro) the delay of the next level in seconds
180
- - `nextLevelDelayTotal` (ro) the total delay of the next level in seconds
181
- - `level` (ro) the ID of the current alarm level
182
- - 1 = Silent
183
- - 2 = Acustic
184
- - 3 = Optical
185
- - 4 = Internal
186
- - 5 = External
187
- - 6 = Remote
188
- - `startTime` (ro) the timestamp when alarm started
189
- - `armedDelay` (ro) the delay of the alarm control being armed
190
- - `armedDelayTotal` (ro) the total delay of the alarm control being armed
191
- - `sensors` (ro) the list of sensors
192
- - `disabledMove` (rw) the movement is disabled (true) or not (false)
193
- - `delayedOn` (wo) writing any value to this state arms the alarm with the configured delay
194
- - `quit` (wo) writing any value to this state acknowledges the alarm
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
- - `armed` (rw) boolean state (true / false) of the alarm; writing `true` to this value will immediately turn the alarm on (without the predefined delay)
201
- - `delayedOn` (wo) writing any value to this state arms the alarm with the configured delay
202
- - `quit` (wo) writing any value to this state acknowledges the alarm
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
- - `isEnabled` (rw) boolean state (true / false) of the alarm clock
209
- - `isAlarmActive` (ro) boolean (true / false) whether the alarm is currently ringing
210
- - `confirmationNeeded` (ro) boolean (true / false) whether the user needs to confirm the alarm
211
- - `ringingTime` (ro) countdown in seconds how long the alarm clock will be ringing until its going to snooze again
212
- - `ringDuration` (rw) duration in seconds the alarm clock is ringing
213
- - `prepareDuration` (rw) preparation time in seconds
214
- - `snoozeTime` (ro) seconds until snoozing ends
215
- - `snoozeDuration` (rw) duration in seconds of snoozing
216
- - `snooze` (wo) writing any value to this state snoozes the current alarm
217
- - `dismiss` (wo) writing any value to this state dismisses the current alarm
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 its 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
- - `serverState` (ro) state of the music server:
224
- - -3 = unknown/invalid zone
225
- - -2 = not reachable
226
- - -1 = unknown
227
- - 0 = offline
228
- - 1 = initializing (booting, trying to reach it)
229
- - 2 = online
230
- - `playState` (rw) the playback state:
231
- - -1 = unknown (this value can't be set)
232
- - 0 = stopped (setting this value will pause playback)
233
- - 1 = paused (setting this value will pause playback)
234
- - 2 = playing (setting this value will start/resume playback)
235
- - `clientState` (ro) state of the client:
236
- - 0 = offline
237
- - 1 = initializing (booting, trying to reach it)
238
- - 2 = online
239
- - `power` (rw) whether or not the client power is active
240
- - `volume` (rw) current volume
241
- - `maxVolume` (ro) zones can be assigned a maximum volume
242
- - `shuffle` (rw) whether or not playlist shuffle is enabled
243
- - `sourceList` (ro) list containing all zone-favorites
244
- - `repeat` (rw) repeat mode:
245
- - -1 = unknown
246
- - 0 = off
247
- - 1 = repeat all
248
- - 2 = -not used-
249
- - 3 = repeat current item
250
- - `songName` (ro) song name
251
- - `duration` (ro) how long the whole track is, -1 if not known (stream)
252
- - `progress` (rw) current position in the track
253
- - `album` (ro) album name
254
- - `artist` (ro) artist name
255
- - `station` (ro) station name
256
- - `genre` (ro) genre name
257
- - `cover` (ro) song/album cover image URL
258
- - `source` (rw) current selected source identifier (see `sourceList` above)
259
- - `prev` (wo) writing any value to this state moves to the previous track
260
- - `next` (wo) writing any value to this state moves to the next track
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
- - `control` (wo) sets the play state of all players (`true` = play, `false` = pause)
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
- - `red` (rw) red value of the color picker
273
- - `green` (rw) green value of the color picker
274
- - `blue` (rw) blue value of the color picker
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
- - `red` (rw) red value of the color picker
284
- - `green` (rw) green value of the color picker
285
- - `blue` (rw) blue value of the color picker
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
- - `mode` (ro) current operating mode of the daytimer
295
- - `mode-text` (ro) current operating mode name of the daytimer
296
- - `override` (ro) the remaining time of the timer
297
- - `value` (ro) current value, `true` or `false` for digital and a value for analog
298
- - `value-formatted` (ro) current formatted value as text
299
- - `needsActivation` (ro) only available if the control needs to be activated
300
- - `resetActive` (ro) stays active as long as the reset input of the daytimer is active
301
- - `pulse` (wo) activates the new value if an entry needs activation
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
- - `position` (rw) current position for the dimmer
308
- - `min` (ro) current minimum value
309
- - `max` (ro) current maximum value
310
- - `step` (ro) current step value
311
- - `on` (wo) writing any value to this state sets the dimmer to the last known position
312
- - `off` (wo) writing any value to this state disables the dimmer, sets position to 0 but remembers the last position
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
- - `position` (rw) current position for the dimmer
319
- - `on` (wo) writing any value to this state sets the dimmer to the last known position
320
- - `off` (wo) writing any value to this state disables the dimmer, sets position to 0 but remembers the last position
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
- - `prodCurr` (ro) current production power
327
- - `prodCurrDay` (ro) energy production all over the current day
328
- - `prodCurrMonth` (ro) energy production all over the current month
329
- - `prodCurrYear` (ro) energy production all over the current year
330
- - `prodTotal` (ro) energy production since setting up
331
- - `consCurr` (ro) current consumption power
332
- - `consCurrDay` (ro) energy consumed throughout the current day
333
- - `consTotal` (ro) energy consumed since setting up
334
- - `deliveryDay` (ro) unknown
335
- - `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
336
- - `earningsMonth` (ro) how much money was earned over the current month
337
- - `earningsYear` (ro) how much money was earned over the current year
338
- - `earningsTotal` (ro) how much money was earned since setting up
339
- - `gridCurr` (ro) current grid consumption/delivery power. If negative, power is being delivered to the grid.
340
- - `batteryCurr` (ro) current battery charging/usage power. If negative, the battery is charging.
341
- - `stateOfCharge` (ro) represents the charging state of the battery. 100 = fully charged.
342
- - `co2Factor` (ro) How much co2 does it take to produce one kWh, used to compute CO2 savings
343
- - `online` (ro) true: online, false: offline
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
- - `position` (ro) the position from 1 = up to 0 = down
350
- - `active` (rw) current direction of the gate movement
351
- - -1 = close
352
- - 0 = not moving
353
- - 1 = open
354
- - `preventOpen` (ro) whether preventing opening of door
355
- - `preventClose` (ro) whether preventing closing of door
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
- - `open` (wo) opens all gates
362
- - `close` (wo) closes all gates
363
- - `stop` (wo) stops all gate motors
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
- - `total` (ro) total number of seconds the counter has been active so far
370
- - `remaining` (ro) how many seconds left until the next maintenance is required
371
- - `lastActivation` (ro) the timestamp when the counter was activated the last time
372
- - `overdue` (ro) `false` if not overdue, otherwise maintenance is required
373
- - `maintenanceInterval` (ro) seconds until the next maintenance
374
- - `active` (ro) whether or not the counter is currently active
375
- - `overdueSince` (ro) seconds since the maintainanceInterval was exceeded
376
- - `reset` (wo) will cause a reset of the following values
377
- - remaining to maintenanceInterval
378
- - overdue to 0
379
- - overdueSince to 0
380
- - `resetAll` (wo) like `reset`, but also sets
381
- - total to 0
382
- - lastActivation to 0
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
- - `value` (ro) the state value (number) of the control
389
- - `value-formatted` (ro) if configured, the formatted value of the state (using the "Unit" format from Loxone Config)
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
- - `active` (ro) boolean state (true / false) of the control
396
- - `active-text` (ro) if configured, the text equivalent of the state
397
- - `active-image` (ro) if configured, the image equivalent of the state
398
- - `active-color` (ro) if configured, the color equivalent of the state
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
  ![InfoOnlyDigital settings](doc/loxone-config-info-only-digital.png)
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
- - `text` (ro) the state value of the control
407
- - `text-formatted` (ro) if configured, the formatted value of the state
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
- - `bell` (ro) whether the bell is ringing
414
- - `lastBellEvents` (ro) array containing the timestamps for each bell-activity that wasn't answered
415
- - `version` (ro) Loxone Intercoms only - text containing the currently installed firmware
416
- versions
417
- - `answer` (wo) writing any value to this state will deactivate the bell
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
- - `up` (rw) whether Jalousie is moving up
432
- - `down` (rw) whether Jalousie is moving down
433
- - `position` (ro) position of the Jalousie, a number from 0 to 1
434
- - Jalousie upper position = 0
435
- - Jalousie lower position = 1
436
- - `shadePosition` (ro) shade position of the Jalousie (blinds), a number from 0 to 1
437
- - Blinds are not shaded = 0
438
- - Blinds are shaded = 1
439
- - `safetyActive` (ro) only used by ones with Autopilot, this represents the safety shutdown
440
- - `autoAllowed` (ro) only used by ones with Autopilot
441
- - `autoActive` (rw) only used by ones with Autopilot
442
- - `locked` (ro) only by ones with Autopilot, this represents the output QI in Loxone Config
443
- - `infoText` (ro) informs e.g. on what caused the locked state, or what did cause the safety to become active.
444
- - `fullUp` (wo) writing any value to this state triggers a full up motion
445
- - `fullDown` (wo) writing any value to this state triggers a full down motion
446
- - `shade` (wo) writing any value to this state shades the Jalousie to the perfect position
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
- - `autoActive` (rw) only used by ones with Autopilot
453
- - `fullUp` (wo) writing any value to this state triggers a full up motion
454
- - `fullDown` (wo) writing any value to this state triggers a full down motion
455
- - `shade` (wo) writing any value to this state shades of all blinds to the perfect position
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
- - `activeScene` (rw) current active scene number
463
- - 0: all off
464
- - 1..8: user defined scene (definition/learning of scenes has to be done with the Loxone tools)
465
- - 9: all on
466
- - `sceneList` (ro) list of all scenes
467
- - `plus` (wo) changes to the next scene
468
- - `minus` (wo) changes to the previous scene
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
- - `moodList` (ro) list of all configured mood names
478
- - `activeMoods` (rw) currently active list of mood names
479
- - `favoriteMoods` (ro) list of the favorite mood names
480
- - `additionalMoods` (ro) list of the non-favorite mood names
481
- - `plus` (wo) changes to the next mood
482
- - `minus` (wo) changes to the previous mood
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,173 +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
- - `control` (wo) turns all lights on or off
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
- - `notificationsDisabledInput` (ro) State of the notifications disabled input
497
- - `packetReceived` (ro) State if a packet has been received
498
- - `mailReceived` (ro) State if mail has been received
499
- - `disableEndTime` (ro) timestamp until the notifications are disabled
500
- - `confirmPacket` (wo) Confirm receive of a packet
501
- - `confirmMail` (wo) Confirm receive of mail
502
- - `disableNotifications` (wo) Disable the notifications for x seconds; 0 seconds for cancelling timer
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
- - `actual` (ro) the actual value (number)
509
- - `actual-formatted` (ro) if configured, the formatted actual value of the state (using the "Unit" format from Loxone Config)
510
- - `total` (ro) the total value (number)
511
- - `total-formatted` (ro) if configured, the formatted total value of the state (using the "Unit" format from Loxone Config)
512
- - `reset` (wo) writing any value to this state resets the total value
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
- - `active` (ro) presence state
519
- - `locked` (ro) locked state
520
- - `events` (ro) the number of events
521
- - `infoText` (ro) reason why the presence detector is locked
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
- - `active` (rw) the current state of the pushbutton
528
- - `pulse` (wo) writing any value to this state will simulate the button being pushed only for a very short time
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
- - `activeOutput` (rw) ID of the currently active output or 0 if none is active ("All Off")
533
+ - `activeOutput` (rw) ID of the currently active output or 0 if none is active ("All Off")
534
+
535
+ ### Remote
536
+
537
+ Provided by media controller.
538
+ Basic read only functionality only.
539
+
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
535
543
 
536
544
  ### Slider
537
545
 
538
546
  Provided by analog virtual inputs.
539
547
 
540
- - `value` (rw) the current value of the slider
541
- - `value-formatted` (ro) if configured, the formatted value of the state (using the "Unit" format from Loxone Config)
542
- - `error` (ro) indicates an invalid value of the slider
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
543
551
 
544
552
  ### SmokeAlarm
545
553
 
546
554
  Provided by utility meters.
547
555
 
548
- - `nextLevel` (ro) the ID of the next alarm level
549
- - 1 = Silent
550
- - 2 = Acustic
551
- - 3 = Optical
552
- - 4 = Internal
553
- - 5 = External
554
- - 6 = Remote
555
- - `nextLevelDelay` (ro) delay of the next level in seconds
556
- - `nextLevelDelayTotal` (ro) total delay of the next level in seconds
557
- - `level` (ro) the ID of the current alarm level
558
- - 1 = Silent
559
- - 2 = Acustic
560
- - 3 = Optical
561
- - 4 = Internal
562
- - 5 = External
563
- - 6 = Remote
564
- - `sensors` (ro) the list of sensors
565
- - `acousticAlarm` (ro) state of the acoustic alarm false for not active and true for active
566
- - `testAlarm` (ro) whether testalarm is active
567
- - `alarmCause` (ro) the cause of the alarm:
568
- - 1 = smoke detector only
569
- - 2 = water only
570
- - 3 = smoke and water
571
- - 4 = temperature only
572
- - 5 = fire and temperature
573
- - 6 = temperature and water
574
- - 7 = fire, temperature and water
575
- - `startTime` (ro) timestamp when alarm started
576
- - `timeServiceMode` (rw) delay until service mode is disabled
577
- - `mute` (wo) writing any value to this state mutes the sirene
578
- - `quit` (wo) writing any value to this state acknowledges the smoke alarm
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
579
587
 
580
588
  ### Switch
581
589
 
582
590
  Provided by virtual input switches.
583
591
 
584
- - `active` (rw) the current state of the switch
592
+ - `active` (rw) the current state of the switch
585
593
 
586
594
  ### Text State
587
595
 
588
596
  Provided by "state".
589
597
 
590
- - `textAndIcon` (ro) the current value of the state
598
+ - `textAndIcon` (ro) the current value of the state
591
599
 
592
600
  ### TimedSwitch
593
601
 
594
602
  Provided by stairwell and multifunction switches.
595
603
 
596
- - `deactivationDelayTotal` (ro) seconds, how long the output will be active if the timer is used
597
- - `deactivationDelay` (ro) countdown until the output is deactivated
598
- - 0 = the output is turned off
599
- - -1 = the output is permanently on
600
- - otherwise it will count down from deactivationDelayTotal
601
- - `on` (wo) writing any value to this state enables the switch permanently without deactivation delay
602
- - `off` (wo) writing any value to this state disables the switch
603
- - `pulse` (wo) pulses the switch:
604
- - deactivationDelay = 0
605
- - Will start the countdown, from deactivationDelayTotal to 0
606
- - if this is a stairwell switch:
607
- - deactivationDelay = -1
608
- - No effect, will remain permanently on.
609
- - deactivationDelay > 0
610
- - Restarts the countdown
611
- - if this is a multifunction switch
612
- - turns it off (from countdown or permanent on state)
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)
613
621
 
614
622
  ### Tracker
615
623
 
616
624
  Provided by stairwell and multifunction switches.
617
625
 
618
- - `entries` (ro) list of entries returned from the miniserver
626
+ - `entries` (ro) list of entries returned from the miniserver
619
627
 
620
628
  ### UpDownAnalog
621
629
 
622
630
  Provided by Virtual Input (Up-Down buttons).
623
631
 
624
- - `value` (rw) the current value of the input
625
- - `value-formatted` (ro) if configured, the formatted value of the state (using the "Unit" format from Loxone Config)
626
- - `error` (ro) indicates an invalid value of the slider
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
627
635
 
628
636
  ### ValueSelector
629
637
 
630
638
  Value selection.
631
639
 
632
- - `value` (rw) current value
633
- - `min` (ro) current minimum value
634
- - `max` (ro) current maximum value
635
- - `step` (ro) current step value
640
+ - `value` (rw) current value
641
+ - `min` (ro) current minimum value
642
+ - `max` (ro) current maximum value
643
+ - `step` (ro) current step value
636
644
 
637
645
  ### WindowMonitor
638
646
 
639
647
  Provided by utility meters.
640
648
 
641
- - `numOpen` (ro) number of open windows & doors
642
- - `numClosed` (ro) number of closed windows & doors
643
- - `numTilted` (ro) number of tilted windows & doors
644
- - `numOffline` (ro) number of windows & doors that are not available
645
- - `numLocked` (ro) number of locked windows & doors
646
- - `numUnlocked` (ro) number of unlocked windows & doors
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
647
655
 
648
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.
649
657
 
650
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:
651
659
 
652
- - `closed` (ro) the window / door is closed
653
- - `tilted` (ro) the window / door is tilted
654
- - `open` (ro) the window / door is open
655
- - `locked` (ro) the window / door is locked
656
- - `unlocked` (ro) the window / door is unlocked
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
657
665
 
658
666
  ## Weather Server
659
667
 
@@ -661,30 +669,30 @@ The weather server information is provided as a device with multiple channels.
661
669
  The device is called `WeatherServer`.
662
670
  It contains:
663
671
 
664
- - the channel `Actual` with the current weather values
665
- - one channel for each forecast hour called `HourXX` where `XX` is the number of hours from now
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
666
674
 
667
675
  Every channel contains the following states:
668
676
 
669
- - `barometricPressure`: numeric barometric pressure value
670
- - `barometricPressure-formatted`: formatted barometric pressure value with unit
671
- - `dewPoint`: numeric dew point value
672
- - `dewPoint-formatted`: formatted dew point value with unit
673
- - `perceivedTemperature`: numeric perceived temperature value
674
- - `perceivedTemperature-formatted`: formatted perceived temperature value with unit
675
- - `precipitation`: numeric precipitation value
676
- - `precipitation-formatted`: formatted precipitation value with unit
677
- - `relativeHumidity`: numeric relative humidity value
678
- - `relativeHumidity-formatted`: formatted relative humidity value with unit
679
- - `solarRadiation`: solar radiation value
680
- - `temperature`: numeric temperature value
681
- - `temperature-formatted`: formatted temperature value with unit
682
- - `timestamp`: timestamp of the data as `value.time` (JavaScript time)
683
- - `weatherType`: numeric weather type enumeration value
684
- - `weatherType-text`: text representation of the weather type
685
- - `windDirection`: wind direction value
686
- - `windSpeed`: wind speed value
687
- - `windSpeed-formatted`: formatted wind speed value with unit
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
688
696
 
689
697
  ## Unsupported Control Types
690
698
 
@@ -718,128 +726,143 @@ Native value from ioBroker &gt; Objects
718
726
  Placeholder for the next version (at the beginning of the line):
719
727
  ### **WORK IN PROGRESS**
720
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
+
736
+ ### 3.0.1 (2023-03-30)
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
721
744
 
722
745
  ### 3.0.0 (2021-12-29)
723
746
 
724
- - (tdesmet) Changed to lxcommunicator (fixes #210)
725
- - (UncleSamSwiss) Updated all dependencies
747
+ - (tdesmet) Changed to lxcommunicator (fixes #210)
748
+ - (UncleSamSwiss) Updated all dependencies
726
749
 
727
750
  ### 2.2.3 (2021-07-06)
728
751
 
729
- - (UncleSamSwiss) Reduced number of Sentry reports for unsupported controls.
752
+ - (UncleSamSwiss) Reduced number of Sentry reports for unsupported controls.
730
753
 
731
754
  ### 2.2.2 (2021-06-23)
732
755
 
733
- - (UncleSamSwiss) Explicitly setting adapter tier to 2.
734
- - (UncleSamSwiss) Added support for Daytimer (IOBROKER-LOXONE-1Z)
735
- - (UncleSamSwiss) Added support for Radio (IOBROKER-LOXONE-21)
736
- - (UncleSamSwiss) Added support for Fronius (IOBROKER-LOXONE-1Y)
737
- - (UncleSamSwiss) Added support for IRCDaytimer (IOBROKER-LOXONE-27)
738
- - (UncleSamSwiss) Added support for Hourcounter (IOBROKER-LOXONE-23)
739
- - (UncleSamSwiss) Added support for InfoOnlyText (IOBROKER-LOXONE-29)
740
- - (UncleSamSwiss) Fixed issues with Lumitech color pickers (#150)
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)
741
764
 
742
765
  ### 2.2.1 (2021-05-18)
743
766
 
744
- - (UncleSamSwiss) Fixed typo causing "Cannot read property 'off' of undefined" (IOBROKER-LOXONE-2R, #72)
745
- - (UncleSamSwiss) Improved Sentry reporting for structure file
767
+ - (UncleSamSwiss) Fixed typo causing "Cannot read property 'off' of undefined" (IOBROKER-LOXONE-2R, #72)
768
+ - (UncleSamSwiss) Improved Sentry reporting for structure file
746
769
 
747
770
  ### 2.2.0 (2021-05-17)
748
771
 
749
- - (UncleSamSwiss) Unknown/unsupported controls are now shown with their states as read-only strings
750
- - (raintonr) Fixes for auto-position based on percentage (#76)
751
- - (raintonr) Added support for IRoomControllerV2 (#22)
752
- - (UncleSamSwiss) Added experimental support for EIBDimmer (#15)
753
- - (UncleSamSwiss) Added support for ValueSelector (#36)
754
- - (UncleSamSwiss) Added support for TextState (#73)
755
- - (UncleSamSwiss) Added support for UpDownAnalog (#57)
756
- - (UncleSamSwiss) Fixed some "State has wrong type" warnings (#99, #128)
757
- - (UncleSamSwiss) Added support for Lumitech color picker (#44)
758
- - (UncleSamSwiss) Weather server data can now be filtered (#131)
759
- - (UncleSamSwiss) Added support for PresenceDetector (IOBROKER-LOXONE-1R)
760
- - (UncleSamSwiss) Added support for AAL Smart Alarm (IOBROKER-LOXONE-1X)
761
- - (UncleSamSwiss) Added support for AAL Emergency Button (IOBROKER-LOXONE-1W)
762
- - (UncleSamSwiss) Added support for Paketsafe (IOBROKER-LOXONE-1P)
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)
763
786
 
764
787
  ### 2.1.0 (2020-12-21)
765
788
 
766
- - (raintonr) Fixed: activeMoods can get stuck/not sync properly; all events is now handled with a queue (#58, #61, #62)
767
- - (raintonr) Added open/close buttons to Garage/Gate Control (#59, #60)
768
- - (pinkit) Added support for virtual text inputs (#48)
769
- - (UncleSamSwiss) Updated to the latest adapter template
770
- - (UncleSamSwiss) Changed log level of "Currently unsupported control type" message to "info" (#65)
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)
771
794
 
772
795
  ### 2.0.2 (2020-10-26)
773
796
 
774
- - (UncleSamSwiss) Fixed color picker updates (#52)
775
- - (UncleSamSwiss) TimedSwitch to have `on`/`off` instead of `active` (#53)
776
- - (UncleSamSwiss) Cleaning illegal characters for room and function names (#54)
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)
777
800
 
778
801
  ### 2.0.1 (2020-09-24)
779
802
 
780
- - (UncleSamSwiss) Fixed percentage states always showing 0% (#49)
781
- - (UncleSamSwiss) Fixed analog virtual inputs wouldn't set the value 0 from ioBroker (#47)
782
- - (UncleSamSwiss) Added translations to package information.
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.
783
806
 
784
807
  ### 2.0.0
785
808
 
786
- - **BREAKING:** Since the password is now encrypted, you will need to enter the password again after an update to this version!
787
- - (UncleSamSwiss) Updated to the latest development tools and changed to the TypeScript language
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
788
811
 
789
812
  ### 1.1.0
790
813
 
791
- - (UncleSamSwiss) Added support for Miniserver Gen 2
792
- - (sstroot) RGB for LightControllerV2
793
- - (Apollon77) Updated CI Testing
814
+ - (UncleSamSwiss) Added support for Miniserver Gen 2
815
+ - (sstroot) RGB for LightControllerV2
816
+ - (Apollon77) Updated CI Testing
794
817
 
795
818
  ### 1.0.0
796
819
 
797
- - (UncleSamSwiss) Fixed issue that was resetting the custom settings and cloud smartName
798
- - (alladdin) Fixed connection issues with Loxone Miniserver 10
799
- - (UncleSamSwiss) Changed all write-only "switch"es to "button"s
800
- - (UncleSamSwiss) Added support for AlarmClock control
801
- - (Apollon77) Updated CI Testing
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
802
825
 
803
826
  ### 0.4.0
804
827
 
805
- - (UncleSamSwiss) Improved support for Loxone Config 9
806
- - (UncleSamSwiss) Changed all color choosers (i.e. color lights) to use RGB (previously HSV/HSL was completely wrong)
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)
807
830
 
808
831
  ### 0.3.0
809
832
 
810
- - (UncleSamSwiss) Control names only synchronized on the first time by default (configurable); users can change control names the way they want
833
+ - (UncleSamSwiss) Control names only synchronized on the first time by default (configurable); users can change control names the way they want
811
834
 
812
835
  ### 0.2.1
813
836
 
814
- - (UncleSamSwiss) Added support for Slider control
837
+ - (UncleSamSwiss) Added support for Slider control
815
838
 
816
839
  ### 0.2.0
817
840
 
818
- - (UncleSamSwiss) Added proper support for Alexa for the following controls: Alarm, AudioZone, Gate, Jalousie and LightController
841
+ - (UncleSamSwiss) Added proper support for Alexa for the following controls: Alarm, AudioZone, Gate, Jalousie and LightController
819
842
 
820
843
  ### 0.1.1
821
844
 
822
- - (UncleSamSwiss) Added support for synchronizing rooms and functions (categories) from Loxone Miniserver
845
+ - (UncleSamSwiss) Added support for synchronizing rooms and functions (categories) from Loxone Miniserver
823
846
 
824
847
  ### 0.1.0
825
848
 
826
- - (UncleSamSwiss) Added support for many more controls including commands from ioBroker to Loxone Miniserver
849
+ - (UncleSamSwiss) Added support for many more controls including commands from ioBroker to Loxone Miniserver
827
850
 
828
851
  ### 0.0.3
829
852
 
830
- - (Bluefox) Formatting, refactoring and Russian translations
853
+ - (Bluefox) Formatting, refactoring and Russian translations
831
854
 
832
855
  ### 0.0.2
833
856
 
834
- - (UncleSamSwiss) Added creation of an empty device for all unsupported controls (helps figure out its configuration)
857
+ - (UncleSamSwiss) Added creation of an empty device for all unsupported controls (helps figure out its configuration)
835
858
 
836
859
  ### 0.0.1
837
860
 
838
- - (UncleSamSwiss) Initial version
861
+ - (UncleSamSwiss) Initial version
839
862
 
840
863
  ## License
841
864
 
842
- Copyright 2021 UncleSamSwiss
865
+ Copyright 2025 UncleSamSwiss
843
866
 
844
867
  Licensed under the Apache License, Version 2.0 (the "License");
845
868
  you may not use this file except in compliance with the License.