Updated external content (Jenkins build 158)
parent
74c34a8977
commit
ef1445eeef
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,109 @@
|
|||
---
|
||||
id: generacmobilelink
|
||||
label: Generac MobileLink
|
||||
title: Generac MobileLink - Bindings
|
||||
type: binding
|
||||
description: "This binding communicates with the Generac MobileLink API and reports on the status of Generac manufactured generators, including versions resold under the brands Eaton, Honeywell and Siemens."
|
||||
since: 3x
|
||||
install: manual
|
||||
---
|
||||
|
||||
<!-- Attention authors: Do not edit directly. Please add your changes to the appropriate source repository -->
|
||||
|
||||
{% include base.html %}
|
||||
|
||||
# Generac MobileLink Binding
|
||||
|
||||
This binding communicates with the Generac MobileLink API and reports on the status of Generac manufactured generators, including versions resold under the brands Eaton, Honeywell and Siemens.
|
||||
|
||||
## Supported Things
|
||||
|
||||
|
||||
### MobileLink Account
|
||||
|
||||
A MobileLink account bridge thing represents a user's MobileLink account and is responsible for authentication and polling for updates.
|
||||
|
||||
ThingTypeUID: `account`
|
||||
|
||||
### Generator
|
||||
|
||||
A Generator thing represents a individual generator linked to an account bridge. Multiple generators are supported.
|
||||
|
||||
ThingTypeUID: `generator`
|
||||
|
||||
## Discovery
|
||||
|
||||
The MobileLink account bridge must be added manually. Once added, generator things will automatically be added to the inbox.
|
||||
|
||||
## Thing Configuration
|
||||
|
||||
### MobileLink Account
|
||||
|
||||
| Parameter | Description |
|
||||
|-----------------|------------------------------------------------------------------------------------|
|
||||
| username | The user name, typically an email address, used to login to the MobileLink service |
|
||||
| password | The password used to login to the MobileLink service |
|
||||
| refreshInterval | The frequency to poll for generator updates, minimum duration is 30 seconds |
|
||||
|
||||
|
||||
## Channels
|
||||
|
||||
### Generator Channels
|
||||
|
||||
All channels are read-only.
|
||||
|
||||
| channel | type | description |
|
||||
|-------------------------|----------------------|-------------------------------------------|
|
||||
| connected | Switch | Connected status |
|
||||
| greenLight | Switch | Green light state (typically auto mode) |
|
||||
| yellowLight | Switch | Yellow light state |
|
||||
| redLight | Switch | Red light state (typically off mode) |
|
||||
| blueLight | Switch | Blue light state (typically running mode) |
|
||||
| statusDate | DateTime | Status date (start of day) |
|
||||
| status | String | General status |
|
||||
| currentAlarmDescription | String | Current alarm description |
|
||||
| runHours | Number:Time | Number of run hours |
|
||||
| exerciseHours | Number:Time | Number of exercise hours |
|
||||
| fuelType | Number | Fuel type |
|
||||
| fuelLevel | Number:Dimensionless | Fuel level |
|
||||
| batteryVoltage | String | Battery voltage status |
|
||||
| serviceStatus | Switch | Service status |
|
||||
|
||||
|
||||
## Full Example
|
||||
|
||||
### Things
|
||||
|
||||
```xtend
|
||||
Bridge generacmobilelink:account:main "MobileLink Account" [ userName="foo@bar.com", password="secret",refreshInterval=60 ] {
|
||||
Thing generator 123456 "MobileLink Generator" [ generatorId="123456" ]
|
||||
}
|
||||
```
|
||||
|
||||
### Items
|
||||
|
||||
```xtend
|
||||
Switch GeneratorConnected "Connected [%s]" {channel="generacmobilelink:generator:main:123456:connected"}
|
||||
Switch GeneratorGreenLight "Green Light [%s]" {channel="generacmobilelink:generator:main:123456:greenLight"}
|
||||
Switch GeneratorYellowLight "Yellow Light [%s]" {channel="generacmobilelink:generator:main:123456:yellowLight"}
|
||||
Switch GeneratorBlueLight "Blue Light [%s]" {channel="generacmobilelink:generator:main:123456:blueLight"}
|
||||
Switch GeneratorRedLight "Red Light [%s]" {channel="generacmobilelink:generator:main:123456:redLight"}
|
||||
String GeneratorStatus "Status [%s]" {channel="generacmobilelink:generator:main:123456:status"}
|
||||
String GeneratorAlarm "Alarm [%s]" {channel="generacmobilelink:generator:main:123456:currentAlarmDescription"}
|
||||
```
|
||||
|
||||
### Sitemap
|
||||
|
||||
```xtend
|
||||
sitemap MobileLink label="Demo Sitemap" {
|
||||
Frame label="Generator" {
|
||||
Switch item=GeneratorConnected
|
||||
Switch item=GeneratorGreenLight
|
||||
Switch item=GeneratorYellowLight
|
||||
Switch item=GeneratorBlueLight
|
||||
Switch item=GeneratorRedLight
|
||||
Text item=GeneratorStatus
|
||||
Text item=GeneratorAlarm
|
||||
}
|
||||
}
|
||||
```
|
File diff suppressed because it is too large
Load Diff
|
@ -129,6 +129,11 @@ All channels read for a VarioString device
|
|||
|
||||
```
|
||||
Bridge modbus:serial:bridge [port="/dev/ttyUSB0",baud=9600,dataBits=8,parity="even",stopBits="1.0",encoding="rtu"]
|
||||
..or..
|
||||
Bridge modbus:tcp:bridge [host="192.168.178.56", port=502, rtuEncoded=true]
|
||||
|
||||
...
|
||||
|
||||
Thing modbus:xtender:bridge:xtenderdevice "Xtender" (modbus:serial:modbusbridge) [ slaveAddress=10, refresh=5 ]
|
||||
```
|
||||
|
||||
|
|
|
@ -52,8 +52,8 @@ The binding can also *write* data to Modbus slaves using FC05 (Write single coil
|
|||
|
||||
Please note the following caveats or limitations
|
||||
|
||||
* the binding does *not* act as Modbus slave (e.g. as Modbus TCP server).
|
||||
* the binding does *not* support Modbus RTU over Modbus TCP, also known as "Modbus over TCP/IP" or "Modbus over TCP" or "Modbus RTU/IP", although normal "Modbus TCP" is supported. However, there is a workaround: you can use a Virtual Serial Port Server, to emulate a COM Port and Bind it with openHAB using Modbus Serial.
|
||||
* The binding does *not* act as Modbus slave (e.g. as Modbus TCP server).
|
||||
* The binding *does* support Modbus RTU over Modbus TCP, (also known as "Modbus over TCP/IP" or "Modbus over TCP" or "Modbus RTU/IP"), as well as normal "Modbus TCP".
|
||||
|
||||
|
||||
## Background Material
|
||||
|
@ -123,11 +123,12 @@ When optional parameters are not specified, they default to the values shown in
|
|||
|
||||
Basic parameters
|
||||
|
||||
| Parameter | Type | Required | Default if omitted | Description |
|
||||
| --------- | ------- | -------- | ------------------ | ----------------------------------------------------------- |
|
||||
| `host` | text | | `"localhost"` | IP Address or hostname |
|
||||
| `port` | integer | | `502` | Port number |
|
||||
| `id` | integer | | `1` | Slave id. Also known as station address or unit identifier. |
|
||||
| Parameter | Type | Required | Default if omitted | Description |
|
||||
| ------------ | ------- | -------- | ------------------ | ----------------------------------------------------------- |
|
||||
| `host` | text | | `"localhost"` | IP Address or hostname |
|
||||
| `port` | integer | | `502` | Port number |
|
||||
| `id` | integer | | `1` | Slave id. Also known as station address or unit identifier. |
|
||||
| `rtuEncoded` | boolean | | `false` | Use RTU encoding instead of regular TCP encoding. |
|
||||
|
||||
Advanced parameters
|
||||
|
||||
|
|
|
@ -21,8 +21,7 @@ install: auto
|
|||
MQTT is a server/client architecture.
|
||||
|
||||
A server, also called broker is not provided within this binding.
|
||||
You can use any of the freely available MQTT Brokers like [Mosquitto](https://mosquitto.org/)
|
||||
or [Moquette](https://moquette-io.github.io/moquette/) or install the [included Moquette broker](https://www.openhab.org/addons/integrations/mqttembeddedbroker/) as add-on.
|
||||
You can use any of the freely available MQTT Brokers like [Mosquitto](https://mosquitto.org/).
|
||||
|
||||
This particular binding allows to configure connections to brokers via openHAB Things.
|
||||
This binding does NOT allow you to link Channels to MQTT topics or perform auto-discovery of available
|
||||
|
@ -84,8 +83,3 @@ Configuration parameters are:
|
|||
|
||||
* __stateTopic__: This channel will trigger on this MQTT topic. This topic can contain wildcards like + and # for example "all/in/#" or "sensors/+/config".
|
||||
* __payload__: An optional condition on the value of the MQTT topic that must match before this channel is triggered.
|
||||
|
||||
## Legacy MQTT1-Binding
|
||||
|
||||
This binding is not supposed to run in parallel to the old mqtt1-binding.
|
||||
Please uninstall the old binding before installing this binding.
|
||||
|
|
|
@ -307,7 +307,7 @@ Bridge nikohomecontrol:bridge2:nhc2 [ addr="192.168.0.70", port=8884, password="
|
|||
dimmer 3 "DiningRoom" [ actionId="abcdef01-abcd-1234-ab98-abcdef012345", step=5 ]
|
||||
blind 4 [ actionId="abcdef01-abcd-1234-ab98-abcdefabcdef" ]
|
||||
thermostat 5 [ thermostatId="abcdef01-abcd-1234-ab98-012345abcdef", overruleTime=10 ]
|
||||
electricitymeter 6 [ energyMeterId="abcdef01-abcd-1234-cd56-ffee34567890" ]
|
||||
energymeter 6 [ energyMeterId="abcdef01-abcd-1234-cd56-ffee34567890" ]
|
||||
}
|
||||
|
||||
Bridge nikohomecontrol:bridge:nhc3 [ addr="192.168.0.110" ] {
|
||||
|
|
|
@ -117,7 +117,7 @@ The binding is able to search the network to get a list of what devices can comm
|
|||
|
||||
Please note that, technically, you are not bound to using the values from the table. But if you use an arbitrary number of seconds, not corresponding to one of the predefined periods, it might not be possible to display the configured value correctly in PaperUI.
|
||||
|
||||
##### Network Size (zigbee_networksize)
|
||||
##### Network Size (zigbee_networksize)
|
||||
|
||||
Some coordinators may need to allocate memory to handle each node in the network. This is an integer setting, and should be set to the maximum number of nodes expected to be added to the network. It should be noted that this will consume memory on the coordinator which may impact on other services such as packet buffers, so it is not advised to simply set this to the maximum value.
|
||||
|
||||
|
|
|
@ -132,7 +132,7 @@ The binding is able to search the network to get a list of what devices can comm
|
|||
|
||||
Please note that, technically, you are not bound to using the values from the table. But if you use an arbitrary number of seconds, not corresponding to one of the predefined periods, it might not be possible to display the configured value correctly in PaperUI.
|
||||
|
||||
##### Network Size (zigbee_networksize)
|
||||
##### Network Size (zigbee_networksize)
|
||||
|
||||
Some coordinators may need to allocate memory to handle each node in the network. This is an integer setting, and should be set to the maximum number of nodes expected to be added to the network. It should be noted that this will consume memory on the coordinator which may impact on other services such as packet buffers, so it is not advised to simply set this to the maximum value.
|
||||
|
||||
|
|
|
@ -38,6 +38,10 @@ The wakeup period does not impact the devices ability to report events or sensor
|
|||
|
||||
Short push middle button
|
||||
|
||||
### General Usage Information
|
||||
|
||||
|
||||
|
||||
## Channels
|
||||
|
||||
The following table summarises the channels available for the MT02650 -:
|
||||
|
|
|
@ -143,7 +143,7 @@ This parameter has the configuration ID ```config_2_1``` and is of type ```INTEG
|
|||
|
||||
PIR sensitivity settings.
|
||||
0 means disable the PIR motion. 1 means the lowest sensitivity, 99 means the highest sensitivity. High sensitivity means can detected long distance, but if there is more noise signal in the environment, it will re-trigger too frequency.
|
||||
The following option values may be configured, in addition to values in the range 0 to 99 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -192,7 +192,7 @@ Bit5: Disable the temperature report after event triggered.
|
|||
Bit6: Reserve.
|
||||
|
||||
Bit7: Disable the back key release into test mode.
|
||||
The following option values may be configured, in addition to values in the range 0 to 127 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
|
|
@ -439,7 +439,7 @@ This parameter has the configuration ID ```config_34_4_000000FF``` and is of typ
|
|||
|
||||
Duration of alarm signalization
|
||||
|
||||
The following option values may be configured, in addition to values in the range 0 to 32400 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
|
|
@ -614,7 +614,7 @@ This parameter determines which actions result in sending scene IDs assigned to
|
|||
4 – Key pressed 3 times
|
||||
|
||||
8 – Key hold down and key released
|
||||
The following option values may be configured, in addition to values in the range 0 to 15 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -646,7 +646,7 @@ This parameter determines which actions result in sending scene IDs assigned to
|
|||
8 – Key hold down and key released
|
||||
|
||||
15 - all active
|
||||
The following option values may be configured, in addition to values in the range 0 to 15 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
|
|
@ -119,7 +119,7 @@ Detailed information on each parameter can be found in the sections below.
|
|||
|-------|-------|-------------|
|
||||
| 1 | “Always On” mode | Will turn on connected device permanently |
|
||||
| 2 | Remember device status before the power failure | determines how the Wall Plug will react in the event of power supply failure |
|
||||
| 3 | Overload safety switch | allows to turn off the controlled device in case of exceeding the defined power. |
|
||||
| 3 | Overload safety switch | Allows to turn off the controlled device in case of exceeding the defined power. |
|
||||
| 10 | High priority power report | minimum percentage change in active power |
|
||||
| 11 | Standard power report | minimum percentage change in active power |
|
||||
| 12 | Power reporting interval | defines the time interval of sending at most 5 standard power reports |
|
||||
|
@ -182,13 +182,13 @@ This parameter has the configuration ID ```config_2_1``` and is of type ```INTEG
|
|||
|
||||
### Parameter 3: Overload safety switch
|
||||
|
||||
allows to turn off the controlled device in case of exceeding the defined power.
|
||||
Allows to turn off the controlled device in case of exceeding the defined power.
|
||||
This function allows to turn off the controlled device in case of exceeding the defined power. Controlled device will be turned off even if “Always On” function is active (parameter 1).
|
||||
|
||||
Controlled device can be turned back on via B-button or sending a control frame. By default this function is inactive.
|
||||
|
||||
10-30000 (1.0-3000.0W, step 0.1W) - power threshold
|
||||
The following option values may be configured, in addition to values in the range 10 to 30000 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -255,7 +255,7 @@ This parameter specifies the minimum change in energy consumption (in relation t
|
|||
1-500 (0.01-5kWh, step 0.01kWh) - threshold
|
||||
|
||||
Default: 10 (0.1kWh)
|
||||
The following option values may be configured, in addition to values in the range 0 to 500 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -272,7 +272,7 @@ defines time period between independent reports sent
|
|||
This parameter defines time period between independent reports sent when changes in power load have not been recorded or if changes are insignificant. By default reports are sent every hour.
|
||||
|
||||
Default: 3600 second (1h)
|
||||
The following option values may be configured, in addition to values in the range 5 to 32400 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -384,7 +384,7 @@ The value of BASIC SET command frame sent to the devices associated in „On/Off
|
|||
Available settings: 0-99 or255
|
||||
|
||||
Default setting: 255
|
||||
The following option values may be configured, in addition to values in the range 0 to 255 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -438,7 +438,7 @@ Available settings: 0 - no reaction,
|
|||
* 1 - turn connected device on
|
||||
* 2 - turn connected device off
|
||||
* 5-50 (0.5-5.0s, step 0.1s) - cyclically change device state with set period
|
||||
The following option values may be configured, in addition to values in the range 5 to 50 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
|
|
@ -238,7 +238,7 @@ Overload safety switch.
|
|||
10-18000 - (1.0-1800.0W, step 0.1W) - power threshold.
|
||||
|
||||
This function allows to turn off the controlled device in case of exceeding the defined power. Controlled device can be turned back on via button or sending a control frame. By default this function is inactive.
|
||||
The following option values may be configured, in addition to values in the range 0 to 18000 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -257,7 +257,7 @@ Power reporting.
|
|||
1-100 - power change in percent; default 15%.
|
||||
|
||||
This parameter determines the minimum percentage change in active power consumption (in relation to the previously reported) that will result in sending new power report.
|
||||
The following option values may be configured, in addition to values in the range 0 to 100 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -274,7 +274,7 @@ Energy reporting threshold.
|
|||
0 - energy reports inactive.
|
||||
|
||||
1-500 - (0.01-5kWh, step 0.01kWh) - threshold; default 10 (0.1kWh).
|
||||
The following option values may be configured, in addition to values in the range 0 to 500 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -293,7 +293,7 @@ Periodic power reporting.
|
|||
30-32400 - In seconds; default 3600 (1h).
|
||||
|
||||
This parameter defines time period between independent reports sent when changes in power load have not been recorded or if changes are insignificant. By default reports are sent every hour.
|
||||
The following option values may be configured, in addition to values in the range 0 to 32400 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -312,7 +312,7 @@ Periodic energy reporting.
|
|||
30-32400 - In seconds; default 3600 (1h).
|
||||
|
||||
This parameter defines time period between independent reports sent when changes in power load have not been recorded or if changes are insignificant. By default reports are sent every hour.
|
||||
The following option values may be configured, in addition to values in the range 0 to 32400 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -396,7 +396,7 @@ Command frame sent to devices in 2nd group.
|
|||
1-99 - forcing level of associated devices.
|
||||
|
||||
The value of BASIC SET command frame sent to the devices associated in 2nd group "On/Off (Button)" when turning the device ON using the button.
|
||||
The following option values may be configured, in addition to values in the range 0 to 255 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -416,7 +416,7 @@ Command frame sent to devices in 2nd group.
|
|||
1-99 - forcing level of associated devices.
|
||||
|
||||
The value of BASIC SET command frame sent to the devices associated in 2nd group "On/Off (Button)" when turning the device OFF using the button.
|
||||
The following option values may be configured, in addition to values in the range 0 to 255 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -436,7 +436,7 @@ Command frame sent to the devices in 3rd group.
|
|||
1-99 - forcing level of associated devices.
|
||||
|
||||
The value of BASIC SET command frame sent to the devices associated in 3rd group "On/Off (Power)" if power exceeded value of parameter 21.
|
||||
The following option values may be configured, in addition to values in the range 0 to 255 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -456,7 +456,7 @@ Command frame sent to the devices in 3rd group.
|
|||
1-99 - forcing level of associated devices.
|
||||
|
||||
The value of BASIC SET command frame sent to the devices associated in 3rd group "On/Off (Power)" if power dropped below value of parameter 22.
|
||||
The following option values may be configured, in addition to values in the range 0 to 255 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -495,7 +495,7 @@ Wall plug response to alarms.
|
|||
5-50 (0.5-5.0s, step 0.1s) - cyclically change device state with set period.
|
||||
|
||||
This parameter defines how the Wall Plug will respond to alarms (device’s status change). In case of values 1 or 2 the Wall Plug is operating normally and LED frame signals an alarm through time defined in parameter 32 or until the alarm is canceled. In case of values 5 to 50 the Wall Plug does not report status change, power changes, ignores BASIC SET command frames. After time defined in parameter 32 or after the alarm cancellation, connected device is set to the previous state.
|
||||
The following option values may be configured, in addition to values in the range 0 to 50 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
|
|
@ -368,11 +368,13 @@ Association group 1 supports 1 node.
|
|||
### Group 2: Sensor 1 On Change
|
||||
|
||||
|
||||
|
||||
Association group 2 supports 2 nodes.
|
||||
|
||||
### Group 3: Sensor 2 On Change
|
||||
|
||||
|
||||
|
||||
Association group 3 supports 2 nodes.
|
||||
|
||||
## Technical Information
|
||||
|
|
|
@ -359,7 +359,7 @@ Determines the brightness of the status LED.
|
|||
</td>
|
||||
</tr>
|
||||
</table>This is an advanced parameter and will therefore not show in the user interface without entering advanced mode.
|
||||
The following option values may be configured, in addition to values in the range 0 to 99 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
|
|
@ -96,7 +96,7 @@ This parameter has the configuration ID ```config_1_1``` and is of type ```INTEG
|
|||
|
||||
|
||||
|
||||
The following option values may be configured -:
|
||||
The following option values may be configured, in addition to values in the range 0 to 3 -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -114,7 +114,7 @@ This parameter has the configuration ID ```config_2_1``` and is of type ```INTEG
|
|||
|
||||
|
||||
|
||||
The following option values may be configured -:
|
||||
The following option values may be configured, in addition to values in the range 0 to 1 -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
|
|
@ -289,7 +289,7 @@ This parameter has the configuration ID ```config_2_2``` and is of type ```INTEG
|
|||
|
||||
Which endpoint is addressed by the BASIC command class
|
||||
If the Controller is not using Multi_Channel command class to access the endpoint of PAN04, you may configure the endpoint value to react the Basic Command Class
|
||||
The following option values may be configured -:
|
||||
The following option values may be configured, in addition to values in the range 1 to 3 -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -306,7 +306,7 @@ This parameter has the configuration ID ```config_3_1``` and is of type ```INTEG
|
|||
|
||||
Change the external switch mode
|
||||
|
||||
The following option values may be configured -:
|
||||
The following option values may be configured, in addition to values in the range 1 to 3 -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -323,9 +323,9 @@ This parameter has the configuration ID ```config_4_1``` and is of type ```INTEG
|
|||
|
||||
If threshold of wattage is reached, a meter report will be generated
|
||||
|
||||
Values in the range 0 to 65535 may be set.
|
||||
Values in the range 10 to 1500 may be set.
|
||||
|
||||
The manufacturer defined default value is ```750```.
|
||||
The manufacturer defined default value is ```1500```.
|
||||
|
||||
This parameter has the configuration ID ```config_5_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
@ -334,7 +334,7 @@ This parameter has the configuration ID ```config_5_2``` and is of type ```INTEG
|
|||
|
||||
If threshold of kWh is reached, a Meter Report will be generated
|
||||
|
||||
Values in the range 0 to 65535 may be set.
|
||||
Values in the range 1 to 10000 may be set.
|
||||
|
||||
The manufacturer defined default value is ```10000```.
|
||||
|
||||
|
@ -345,7 +345,7 @@ This parameter has the configuration ID ```config_6_2``` and is of type ```INTEG
|
|||
|
||||
Restore switch state mode
|
||||
Restores the switch state setting in case the device was disconnected from the power source.
|
||||
The following option values may be configured -:
|
||||
The following option values may be configured, in addition to values in the range 0 to 2 -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -362,7 +362,7 @@ This parameter has the configuration ID ```config_7_1``` and is of type ```INTEG
|
|||
|
||||
Auto Off Timer
|
||||
Whenever the device switches to on, the auto off timer begin to count down. After the timer decrease to zero, it will switch off automatically.
|
||||
Values in the range 0 to 65535 may be set.
|
||||
Values in the range 0 to 32767 may be set.
|
||||
|
||||
The manufacturer defined default value is ```0```.
|
||||
|
||||
|
@ -426,16 +426,19 @@ The PAN04 supports 3 association groups.
|
|||
### Group 1: Relay 1 + 2
|
||||
|
||||
|
||||
|
||||
Association group 1 supports 1 node.
|
||||
|
||||
### Group 2: Relay 1
|
||||
|
||||
|
||||
|
||||
Association group 2 supports 1 node.
|
||||
|
||||
### Group 3: Relay 2
|
||||
|
||||
|
||||
|
||||
Association group 3 supports 1 node.
|
||||
|
||||
## Technical Information
|
||||
|
|
|
@ -426,7 +426,7 @@ Available configuration parameters (data type is 2 Byte DEC)
|
|||
* 30 – 32535 = 30 s – 32535 s
|
||||
|
||||
**NOTE:** the delay time may be prolonged for more then 10s of the time set by the parameter.This is an advanced parameter and will therefore not show in the user interface without entering advanced mode.
|
||||
The following option values may be configured, in addition to values in the range 0 to 32535 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
|
|
@ -300,7 +300,7 @@ cessed, the transition cannot be interrupted by any motion event in any case.
|
|||
210 - 254 = Reserved
|
||||
|
||||
255 = Lamp/relay is switched off for TIME (cfg 1). It does not wait for a motion event and works normally via current motion evaluation.
|
||||
The following option values may be configured, in addition to values in the range 0 to 209 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
|
|
@ -169,7 +169,7 @@ This parameter has the configuration ID ```config_3_1``` and is of type ```INTEG
|
|||
|
||||
Default Fade Time in Seconds
|
||||
|
||||
The following option values may be configured, in addition to values in the range 0 to 127 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
|
|
@ -203,7 +203,7 @@ This parameter has the configuration ID ```config_5_1``` and is of type ```INTEG
|
|||
|
||||
Auto Turn-Off Timer for Relay 1
|
||||
Use this parameter to set the time after which you want the device connected to Relay 1 to automatically turn off once it has been turned on. The number entered as value corresponds to the number of minutes.
|
||||
The following option values may be configured, in addition to values in the range 0 to 65535 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -218,7 +218,7 @@ This parameter has the configuration ID ```config_6_4``` and is of type ```INTEG
|
|||
|
||||
Auto Turn-On Timer for Relay 1
|
||||
Use this parameter to set the time after which you want the device connected to Relay 1 to automatically turn on once it has been turned off. The number entered as value corresponds to the number of minutes.
|
||||
The following option values may be configured, in addition to values in the range 0 to 65535 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -233,7 +233,7 @@ This parameter has the configuration ID ```config_7_4``` and is of type ```INTEG
|
|||
|
||||
Auto Turn-Off Timer for Relay 2
|
||||
Use this parameter to set the time after which you want the device connected to Relay 2 to automatically turn off once it has been turned on. The number entered as value corresponds to the number of minutes.
|
||||
The following option values may be configured, in addition to values in the range 0 to 65535 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -248,7 +248,7 @@ This parameter has the configuration ID ```config_8_4``` and is of type ```INTEG
|
|||
|
||||
Auto Turn-On Timer for Relay 2
|
||||
Use this parameter to set the time after which you want the device connected to Relay 2 to automatically turn on once it has been turned off. The number entered as value corresponds to the number of minutes.
|
||||
The following option values may be configured, in addition to values in the range 0 to 65535 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -263,7 +263,7 @@ This parameter has the configuration ID ```config_9_4``` and is of type ```INTEG
|
|||
|
||||
Auto Turn-Off Timer for Relay 3
|
||||
Use this parameter to set the time after which you want the device connected to Relay 3 to automatically turn off once it has been turned on. The number entered as value corresponds to the number of minutes.
|
||||
The following option values may be configured, in addition to values in the range 0 to 65535 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -278,7 +278,7 @@ This parameter has the configuration ID ```config_10_4``` and is of type ```INTE
|
|||
|
||||
Auto Turn-On Timer for Relay 3
|
||||
Use this parameter to set the time after which you want the device connected to Relay 3 to automatically turn on once it has been turned off. The number entered as value corresponds to the number of minutes.
|
||||
The following option values may be configured, in addition to values in the range 0 to 65535 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
|
|
@ -275,7 +275,7 @@ This parameter has the configuration ID ```config_5_1``` and is of type ```INTEG
|
|||
|
||||
Auto Turn-Off Timer for Relay 1
|
||||
Use this parameter to set the time after which you want the device connected to Relay 1 to automatically turn off once it has been turned on. The number entered as value corresponds to the number of minutes.
|
||||
The following option values may be configured, in addition to values in the range 0 to 65535 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -290,7 +290,7 @@ This parameter has the configuration ID ```config_6_4``` and is of type ```INTEG
|
|||
|
||||
Auto Turn-On Timer for Relay 1
|
||||
Use this parameter to set the time after which you want the device connected to Relay 1 to automatically turn on once it has been turned off. The number entered as value corresponds to the number of minutes.
|
||||
The following option values may be configured, in addition to values in the range 0 to 65535 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -305,7 +305,7 @@ This parameter has the configuration ID ```config_7_4``` and is of type ```INTEG
|
|||
|
||||
Auto Turn-Off Timer for Relay 2
|
||||
Use this parameter to set the time after which you want the device connected to Relay 2 to automatically turn off once it has been turned on. The number entered as value corresponds to the number of minutes.
|
||||
The following option values may be configured, in addition to values in the range 0 to 65535 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -320,7 +320,7 @@ This parameter has the configuration ID ```config_8_4``` and is of type ```INTEG
|
|||
|
||||
Auto Turn-On Timer for Relay 2
|
||||
Use this parameter to set the time after which you want the device connected to Relay 2 to automatically turn on once it has been turned off. The number entered as value corresponds to the number of minutes.
|
||||
The following option values may be configured, in addition to values in the range 0 to 65535 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -335,7 +335,7 @@ This parameter has the configuration ID ```config_9_4``` and is of type ```INTEG
|
|||
|
||||
Auto Turn-Off Timer for Relay 3
|
||||
Use this parameter to set the time after which you want the device connected to Relay 3 to automatically turn off once it has been turned on. The number entered as value corresponds to the number of minutes.
|
||||
The following option values may be configured, in addition to values in the range 0 to 65535 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -350,7 +350,7 @@ This parameter has the configuration ID ```config_10_4``` and is of type ```INTE
|
|||
|
||||
Auto Turn-On Timer for Relay 3
|
||||
Use this parameter to set the time after which you want the device connected to Relay 3 to automatically turn on once it has been turned off. The number entered as value corresponds to the number of minutes.
|
||||
The following option values may be configured, in addition to values in the range 0 to 65535 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
|
|
@ -0,0 +1,109 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<thing:thing-descriptions bindingId="generacmobilelink"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:thing="https://openhab.org/schemas/thing-description/v1.0.0"
|
||||
xsi:schemaLocation="https://openhab.org/schemas/thing-description/v1.0.0 https://openhab.org/schemas/thing-description-1.0.0.xsd">
|
||||
|
||||
<bridge-type id="account">
|
||||
<label>MobileLink Account</label>
|
||||
<description>MobileLink Cloud Account</description>
|
||||
<config-description-ref uri="thing-type:generacmobilelink:account"/>
|
||||
</bridge-type>
|
||||
|
||||
<thing-type id="generator">
|
||||
<supported-bridge-type-refs>
|
||||
<bridge-type-ref id="account"/>
|
||||
</supported-bridge-type-refs>
|
||||
<label>MobileLink Generator</label>
|
||||
<description>MobileLink Generator</description>
|
||||
<channels>
|
||||
<channel id="connected" typeId="connected"/>
|
||||
<channel id="greenLight" typeId="greenLight"/>
|
||||
<channel id="yellowLight" typeId="yellowLight"/>
|
||||
<channel id="redLight" typeId="redLight"/>
|
||||
<channel id="blueLight" typeId="blueLight"/>
|
||||
<channel id="statusDate" typeId="statusDate"/>
|
||||
<channel id="status" typeId="status"/>
|
||||
<channel id="currentAlarmDescription" typeId="currentAlarmDescription"/>
|
||||
<channel id="runHours" typeId="runHours"/>
|
||||
<channel id="exerciseHours" typeId="exerciseHours"/>
|
||||
<channel id="fuelType" typeId="fuelType"/>
|
||||
<channel id="fuelLevel" typeId="fuelLevel"/>
|
||||
<channel id="batteryVoltage" typeId="batteryVoltage"/>
|
||||
<channel id="serviceStatus" typeId="serviceStatus"/>
|
||||
</channels>
|
||||
<representation-property>generatorId</representation-property>
|
||||
<config-description-ref uri="thing-type:generacmobilelink:generator"/>
|
||||
</thing-type>
|
||||
|
||||
<channel-type id="connected">
|
||||
<item-type>Switch</item-type>
|
||||
<label>Connected</label>
|
||||
<state readOnly="true"/>
|
||||
</channel-type>
|
||||
<channel-type id="greenLight">
|
||||
<item-type>Switch</item-type>
|
||||
<label>Green Light Status</label>
|
||||
<state readOnly="true"/>
|
||||
</channel-type>
|
||||
<channel-type id="yellowLight">
|
||||
<item-type>Switch</item-type>
|
||||
<label>Yellow Light Status</label>
|
||||
<state readOnly="true"/>
|
||||
</channel-type>
|
||||
<channel-type id="redLight">
|
||||
<item-type>Switch</item-type>
|
||||
<label>Red Light Status</label>
|
||||
<state readOnly="true"/>
|
||||
</channel-type>
|
||||
<channel-type id="blueLight">
|
||||
<item-type>Switch</item-type>
|
||||
<label>Blue Light Status</label>
|
||||
<state readOnly="true"/>
|
||||
</channel-type>
|
||||
<channel-type id="statusDate">
|
||||
<item-type>DateTime</item-type>
|
||||
<label>Last Status Date</label>
|
||||
<state readOnly="true"/>
|
||||
</channel-type>
|
||||
<channel-type id="status">
|
||||
<item-type>String</item-type>
|
||||
<label>Status</label>
|
||||
<state readOnly="true"/>
|
||||
</channel-type>
|
||||
<channel-type id="currentAlarmDescription">
|
||||
<item-type>String</item-type>
|
||||
<label>Current Alarm Description</label>
|
||||
<state readOnly="true"/>
|
||||
</channel-type>
|
||||
<channel-type id="runHours">
|
||||
<item-type>Number:Time</item-type>
|
||||
<label>Number of Hours Run</label>
|
||||
<state readOnly="true" pattern="%d %unit%"/>
|
||||
</channel-type>
|
||||
<channel-type id="exerciseHours">
|
||||
<item-type>Number:Time</item-type>
|
||||
<label>Number of Hours Exercised</label>
|
||||
<state readOnly="true" pattern="%d %unit%"/>
|
||||
</channel-type>
|
||||
<channel-type id="fuelType">
|
||||
<item-type>Number</item-type>
|
||||
<label>Fuel Type</label>
|
||||
<state readOnly="true"/>
|
||||
</channel-type>
|
||||
<channel-type id="fuelLevel">
|
||||
<item-type>Number:Dimensionless</item-type>
|
||||
<label>Fuel Level</label>
|
||||
<state readOnly="true"/>
|
||||
</channel-type>
|
||||
<channel-type id="batteryVoltage">
|
||||
<item-type>String</item-type>
|
||||
<label>Battery Voltage Status</label>
|
||||
<state readOnly="true"/>
|
||||
</channel-type>
|
||||
<channel-type id="serviceStatus">
|
||||
<item-type>Switch</item-type>
|
||||
<label>Service Status</label>
|
||||
<state readOnly="true"/>
|
||||
</channel-type>
|
||||
</thing:thing-descriptions>
|
|
@ -7,6 +7,7 @@
|
|||
<thing-type id="bsp">
|
||||
<supported-bridge-type-refs>
|
||||
<bridge-type-ref id="serial"/>
|
||||
<bridge-type-ref id="tcp"/>
|
||||
</supported-bridge-type-refs>
|
||||
<label>BSP Studer</label>
|
||||
<description>Thing for Studer BSP Device</description>
|
||||
|
|
|
@ -32,6 +32,12 @@
|
|||
<default>false</default>
|
||||
</parameter>
|
||||
|
||||
<parameter name="rtuEncoded" type="boolean">
|
||||
<label>RTU Encoding</label>
|
||||
<description>Use RTU Encoding over IP</description>
|
||||
<default>false</default>
|
||||
</parameter>
|
||||
|
||||
<!-- connection handling -->
|
||||
<parameter name="timeBetweenTransactionsMillis" type="integer" min="0" unit="ms">
|
||||
<label>Time Between Transactions</label>
|
||||
|
|
|
@ -44,7 +44,7 @@ Devolo Thermostat (09356)<br /> <h1>Overview</h1><p>Radiator Thermostat</p> <br
|
|||
<property name="vendor">Danfoss</property>
|
||||
<property name="modelId">MT02650</property>
|
||||
<property name="manufacturerId">0002</property>
|
||||
<property name="manufacturerRef">0005:0175</property>
|
||||
<property name="manufacturerRef">0005:0175,5FFF:A010</property>
|
||||
<property name="dbReference">295</property>
|
||||
<property name="defaultAssociations">1</property>
|
||||
</properties>
|
||||
|
|
|
@ -80,8 +80,7 @@ Setting the BASIC command value to turn on the light.<br /> <h1>Overview</h1><p>
|
|||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_3_1" type="integer" groupName="configuration"
|
||||
min="0" max="99">
|
||||
<parameter name="config_3_1" type="integer" groupName="configuration">
|
||||
<label>3: PIR Sensitivity</label>
|
||||
<description><![CDATA[
|
||||
PIR sensitivity settings.<br /> <h1>Overview</h1><p>0 means disable the PIR motion. 1 means the lowest sensitivity, 99 means the highest sensitivity. High sensitivity means can detected long distance, but if there is more noise signal in the environment, it will re-trigger too frequency. </p>
|
||||
|
@ -92,6 +91,7 @@ PIR sensitivity settings.<br /> <h1>Overview</h1><p>0 means disable the PIR moti
|
|||
<option value="1">Lowest sensitivity</option>
|
||||
<option value="99">Highest sensitivity</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_4_1" type="integer" groupName="configuration">
|
||||
|
@ -107,8 +107,7 @@ Setting the illumination threshold to turn on the light<br /> <h1>Overview</h1><
|
|||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_5_1" type="integer" groupName="configuration"
|
||||
min="0" max="127">
|
||||
<parameter name="config_5_1" type="integer" groupName="configuration">
|
||||
<label>5: Operation Mode</label>
|
||||
<description><![CDATA[
|
||||
Parameter to set the Operation Mode<br /> <h1>Overview</h1><p>Bit0: Reserve.</p> <p>Bit1: 1 means enable test mode, 0 means disable normal mode. (Notice: This bit only effect by the DIP Switch setting to program mode.) </p> <p>Bit2: Disable the door/window function.</p> <p>Bit3: Setting the temperature scale. 0: Fahrenheit, 1:Celsius</p> <p>Bit4: Disable the illumination report after event triggered.</p> <p>Bit5: Disable the temperature report after event triggered.</p> <p>Bit6: Reserve.</p> <p>Bit7: Disable the back key release into test mode.</p>
|
||||
|
@ -118,6 +117,7 @@ Parameter to set the Operation Mode<br /> <h1>Overview</h1><p>Bit0: Reserve.</p>
|
|||
<option value="8">Celsius and LED off = Bits: 00001000 = 8</option>
|
||||
<option value="10">Preset: Celsius and LED on = Bits: 00001010 = 10</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_6_1" type="integer" groupName="configuration"
|
||||
|
|
|
@ -309,14 +309,16 @@ RGBW CONTROLLER 2<br /> <h1>Overview</h1><p>FIBARO RGBW Controller 2 uses PWM ou
|
|||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_35_2_0000FFFF" type="integer" groupName="configuration"
|
||||
min="0" max="32400">
|
||||
<parameter name="config_35_2_0000FFFF" type="integer" groupName="configuration">
|
||||
<label>35: Duration of alarm signalization</label>
|
||||
<description>Duration of alarm signalization</description>
|
||||
<description><![CDATA[
|
||||
Duration of alarm signalization<br /> <h1>Overview</h1><p><br /></p>
|
||||
]]></description>
|
||||
<default>600</default>
|
||||
<options>
|
||||
<option value="0">infinite signalization</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_40_1" type="integer" groupName="configuration"
|
||||
|
|
|
@ -337,8 +337,7 @@ duration of alarm sequence<br /> <h1>Overview</h1><p>This parameter defines dura
|
|||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_40_1" type="integer" groupName="configuration"
|
||||
min="0" max="15">
|
||||
<parameter name="config_40_1" type="integer" groupName="configuration">
|
||||
<label>40: S1 input – scenes sent</label>
|
||||
<description><![CDATA[
|
||||
actions result in sending scene IDs<br /> <h1>Overview</h1><p>This parameter determines which actions result in sending scene IDs assigned to them. Values can be combined (e.g. 1+2=3 means that scenes for single and double click are sent). Enabling scenes for triple click disables entering the device in learning mode by triple clicking.</p> <p>15 (all active) Available values</p> <p>0 – no scenes sent</p> <p>1 – Key pressed 1 time</p> <p>2 – Key pressed 2 times</p> <p>4 – Key pressed 3 times</p> <p>8 – Key hold down and key released</p>
|
||||
|
@ -352,10 +351,10 @@ actions result in sending scene IDs<br /> <h1>Overview</h1><p>This parameter det
|
|||
<option value="8">Key hold down and key released</option>
|
||||
<option value="15">all active</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_41_1" type="integer" groupName="configuration"
|
||||
min="0" max="15">
|
||||
<parameter name="config_41_1" type="integer" groupName="configuration">
|
||||
<label>41: S2 input – scenes sent</label>
|
||||
<description><![CDATA[
|
||||
actions result in sending scene IDs<br /> <h1>Overview</h1><p>This parameter determines which actions result in sending scene IDs assigned to them. Values can be combined (e.g. 1+2=3 means that scenes for single and double click are sent). Enabling scenes for triple click disables entering the device in learning mode by triple clicking.</p> <p>0 – no scenes sent</p> <p>1 – Key pressed 1 time</p> <p>2 – Key pressed 2 times</p> <p>4 – Key pressed 3 times</p> <p>8 – Key hold down and key released</p> <p>15 - all active</p>
|
||||
|
@ -369,6 +368,7 @@ actions result in sending scene IDs<br /> <h1>Overview</h1><p>This parameter det
|
|||
<option value="8">Key hold down and key released</option>
|
||||
<option value="15">all active</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_150_1" type="integer" groupName="configuration">
|
||||
|
|
|
@ -116,16 +116,16 @@ determines how the Wall Plug will react in the event of power supply failure<br
|
|||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_3_2" type="integer" groupName="configuration"
|
||||
min="10" max="30000">
|
||||
<parameter name="config_3_2" type="integer" groupName="configuration">
|
||||
<label>3: Overload safety switch</label>
|
||||
<description><![CDATA[
|
||||
allows to turn off the controlled device in case of exceeding the defined power.<br /> <h1>Overview</h1><p>This function allows to turn off the controlled device in case of exceeding the defined power. Controlled device will be turned off even if “Always On” function is active (parameter 1).</p> <p>Controlled device can be turned back on via B-button or sending a control frame. By default this function is inactive.</p> <p>10-30000 (1.0-3000.0W, step 0.1W) - power threshold</p>
|
||||
Allows to turn off the controlled device in case of exceeding the defined power.<br /> <h1>Overview</h1><p>This function allows to turn off the controlled device in case of exceeding the defined power. Controlled device will be turned off even if “Always On” function is active (parameter 1).</p> <p>Controlled device can be turned back on via B-button or sending a control frame. By default this function is inactive.</p> <p>10-30000 (1.0-3000.0W, step 0.1W) - power threshold</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">function inactive</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_10_1" type="integer" groupName="configuration"
|
||||
|
@ -158,8 +158,7 @@ defines the time interval of sending at most 5 standard power reports<br /> <h1>
|
|||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_13_2" type="integer" groupName="configuration"
|
||||
min="0" max="500">
|
||||
<parameter name="config_13_2" type="integer" groupName="configuration">
|
||||
<label>13: Energy reporting threshold</label>
|
||||
<description><![CDATA[
|
||||
specifies the minimum change in energy consumption<br /> <h1>Overview</h1><p>This parameter specifies the minimum change in energy consumption (in relation to the previously reported), that will result in sending a new report.</p> <p>0 - energy reports inactive<br />1-500 (0.01-5kWh, step 0.01kWh) - threshold</p> <p>Default: 10 (0.1kWh)</p>
|
||||
|
@ -168,10 +167,10 @@ specifies the minimum change in energy consumption<br /> <h1>Overview</h1><p>Thi
|
|||
<options>
|
||||
<option value="0">energy reports inactive</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_14_2" type="integer" groupName="configuration"
|
||||
min="5" max="32400">
|
||||
<parameter name="config_14_2" type="integer" groupName="configuration">
|
||||
<label>14: Power and energy periodic reports</label>
|
||||
<description><![CDATA[
|
||||
defines time period between independent reports sent<br /> <h1>Overview</h1><p>This parameter defines time period between independent reports sent when changes in power load have not been recorded or if changes are insignificant. By default reports are sent every hour.</p> <p>Default: 3600 second (1h)</p>
|
||||
|
@ -180,6 +179,7 @@ defines time period between independent reports sent<br /> <h1>Overview</h1><p>T
|
|||
<options>
|
||||
<option value="0">periodic reports inactive</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_15_1" type="integer" groupName="configuration">
|
||||
|
@ -245,8 +245,7 @@ defines the way that 3rd association group devices are controlled.<br /> <h1>Ove
|
|||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_24_2" type="integer" groupName="configuration"
|
||||
min="0" max="255">
|
||||
<parameter name="config_24_2" type="integer" groupName="configuration">
|
||||
<label>24: SWITCH ON value - „On/Off” association groups</label>
|
||||
<description><![CDATA[
|
||||
SWITCH ON value - „On/Off” association groups<br /> <h1>Overview</h1><p>The value of BASIC SET command frame sent to the devices associated in „On/Off” association groups (2, 3).</p> <p>„On/Off (Button)” association group - in accordance with parameter 20.<br />„On/Off (Power)” association group - in accordance with parameter 23.</p> <p>Available settings: 0-99 or255</p> <p>Default setting: 255</p>
|
||||
|
@ -255,6 +254,7 @@ SWITCH ON value - „On/Off” association groups<br /> <h1>Overview</h1><p>The
|
|||
<options>
|
||||
<option value="255">Default</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_30_1" type="integer" groupName="configuration">
|
||||
|
@ -275,8 +275,7 @@ Define Z-Wave network alarms to which the Wall Plug will respond<br /> <h1>Overv
|
|||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_31_1" type="integer" groupName="configuration"
|
||||
min="5" max="50">
|
||||
<parameter name="config_31_1" type="integer" groupName="configuration">
|
||||
<label>31: Response to alarm frames</label>
|
||||
<description><![CDATA[
|
||||
defines how the Wall Plug will respond to alarms<br /> <h1>Overview</h1><p>This parameter defines how the Wall Plug will respond to alarms (device’s status change).</p> <p>In case of values 1 or 2 the Wall Plug is operating normally and LED ring signals an alarm through time defined in parameter 32 or until the alarm is cancelled.</p> <p>In case of values 5 to 50 the Wall Plug does not report status change, power changes, ignores BASIC SET command frames. After time defined in parameter 32 or after the alarm cancellation, connected device is set to the previous state.</p> <p>Available settings: 0 - no reaction,</p> <ul><li>1 - turn connected device on</li> <li>2 - turn connected device off</li> <li>5-50 (0.5-5.0s, step 0.1s) - cyclically change device state with set period</li> </ul>
|
||||
|
@ -287,6 +286,7 @@ defines how the Wall Plug will respond to alarms<br /> <h1>Overview</h1><p>This
|
|||
<option value="1">turn connected device on</option>
|
||||
<option value="2">turn connected device off</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_32_2" type="integer" groupName="configuration"
|
||||
|
|
|
@ -150,8 +150,7 @@ Remember device status before the power failure.<br /> <h1>Overview</h1><p>This
|
|||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_3_2" type="integer" groupName="configuration"
|
||||
min="0" max="18000">
|
||||
<parameter name="config_3_2" type="integer" groupName="configuration">
|
||||
<label>3: Overload</label>
|
||||
<description><![CDATA[
|
||||
Overload safety switch.<br /> <h1>Overview</h1><p>0 - function inactive (default).</p> <p>10-18000 - (1.0-1800.0W, step 0.1W) - power threshold.</p> <p>This function allows to turn off the controlled device in case of exceeding the defined power. Controlled device can be turned back on via button or sending a control frame. By default this function is inactive. </p>
|
||||
|
@ -160,10 +159,10 @@ Overload safety switch.<br /> <h1>Overview</h1><p>0 - function inactive (default
|
|||
<options>
|
||||
<option value="0">Overload Disabled.</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_11_1" type="integer" groupName="configuration"
|
||||
min="0" max="100">
|
||||
<parameter name="config_11_1" type="integer" groupName="configuration">
|
||||
<label>11: PowerReporting</label>
|
||||
<description><![CDATA[
|
||||
Power reporting.<br /> <h1>Overview</h1><p>0 - power reports inactive.</p> <p>1-100 - power change in percent; default 15%.</p> <p>This parameter determines the minimum percentage change in active power consumption (in relation to the previously reported) that will result in sending new power report. </p>
|
||||
|
@ -172,10 +171,10 @@ Power reporting.<br /> <h1>Overview</h1><p>0 - power reports inactive.</p> <p>1-
|
|||
<options>
|
||||
<option value="0">Disables power reporting.</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_12_2" type="integer" groupName="configuration"
|
||||
min="0" max="500">
|
||||
<parameter name="config_12_2" type="integer" groupName="configuration">
|
||||
<label>12: EnergyReportingThreshold</label>
|
||||
<description><![CDATA[
|
||||
Energy reporting threshold.<br /> <h1>Overview</h1><p>0 - energy reports inactive.</p> <p>1-500 - (0.01-5kWh, step 0.01kWh) - threshold; default 10 (0.1kWh).</p>
|
||||
|
@ -184,10 +183,10 @@ Energy reporting threshold.<br /> <h1>Overview</h1><p>0 - energy reports inactiv
|
|||
<options>
|
||||
<option value="0">Disables energy reporting.</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_13_2" type="integer" groupName="configuration"
|
||||
min="0" max="32400">
|
||||
<parameter name="config_13_2" type="integer" groupName="configuration">
|
||||
<label>13: ReportingInterval</label>
|
||||
<description><![CDATA[
|
||||
Periodic power reporting.<br /> <h1>Overview</h1><p>0 - periodic reports inactive.</p> <p>30-32400 - In seconds; default 3600 (1h).</p> <p>This parameter defines time period between independent reports sent when changes in power load have not been recorded or if changes are insignificant. By default reports are sent every hour.</p>
|
||||
|
@ -196,10 +195,10 @@ Periodic power reporting.<br /> <h1>Overview</h1><p>0 - periodic reports inactiv
|
|||
<options>
|
||||
<option value="0">Disables reporting.</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_14_2" type="integer" groupName="configuration"
|
||||
min="0" max="32400">
|
||||
<parameter name="config_14_2" type="integer" groupName="configuration">
|
||||
<label>14: ReportingEnergyInterval</label>
|
||||
<description><![CDATA[
|
||||
Periodic energy reporting.<br /> <h1>Overview</h1><p>0 - periodic reports inactive.</p> <p>30-32400 - In seconds; default 3600 (1h).</p> <p>This parameter defines time period between independent reports sent when changes in power load have not been recorded or if changes are insignificant. By default reports are sent every hour.</p>
|
||||
|
@ -208,6 +207,7 @@ Periodic energy reporting.<br /> <h1>Overview</h1><p>0 - periodic reports inacti
|
|||
<options>
|
||||
<option value="0">Disables reporting.</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_15_1" type="integer" groupName="configuration">
|
||||
|
@ -255,8 +255,7 @@ Controlling 3rd association group devices.<br /> <h1>Overview</h1><p>[Controllin
|
|||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_24_2" type="integer" groupName="configuration"
|
||||
min="0" max="255">
|
||||
<parameter name="config_24_2" type="integer" groupName="configuration">
|
||||
<label>24: Switch On</label>
|
||||
<description><![CDATA[
|
||||
Command frame sent to devices in 2nd group.<br /> <h1>Overview</h1><p> [SWITCH ON value - "On/Off (Button)" association group (2).]</p> <p>1-99 - forcing level of associated devices.</p> <p>The value of BASIC SET command frame sent to the devices associated in 2nd group "On/Off (Button)" when turning the device ON using the button.</p>
|
||||
|
@ -266,10 +265,10 @@ Command frame sent to devices in 2nd group.<br /> <h1>Overview</h1><p> [SWITCH
|
|||
<option value="0">OFF.</option>
|
||||
<option value="255">Last State/ON.</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_25_2" type="integer" groupName="configuration"
|
||||
min="0" max="255">
|
||||
<parameter name="config_25_2" type="integer" groupName="configuration">
|
||||
<label>25: Switch Off</label>
|
||||
<description><![CDATA[
|
||||
Command frame sent to devices in 2nd group.<br /> <h1>Overview</h1><p> [SWITCH OFF value - "On/Off (Button)" association group (2).]</p> <p>1-99 - forcing level of associated devices.</p> <p>The value of BASIC SET command frame sent to the devices associated in 2nd group "On/Off (Button)" when turning the device OFF using the button.</p>
|
||||
|
@ -279,10 +278,10 @@ Command frame sent to devices in 2nd group.<br /> <h1>Overview</h1><p> [SWITCH
|
|||
<option value="0">OFF.</option>
|
||||
<option value="255">Last State/ON.</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_26_2" type="integer" groupName="configuration"
|
||||
min="0" max="255">
|
||||
<parameter name="config_26_2" type="integer" groupName="configuration">
|
||||
<label>26: Threshold Up.</label>
|
||||
<description><![CDATA[
|
||||
Command frame sent to the devices in 3rd group.<br /> <h1>Overview</h1><p>[THRESHOLD UP value - "On/Off (Power)" association group (3).]</p> <p>1-99 - forcing level of associated devices.</p> <p>The value of BASIC SET command frame sent to the devices associated in 3rd group "On/Off (Power)" if power exceeded value of parameter 21.</p>
|
||||
|
@ -292,10 +291,10 @@ Command frame sent to the devices in 3rd group.<br /> <h1>Overview</h1><p>[THRES
|
|||
<option value="0">OFF.</option>
|
||||
<option value="255">Last State/ON.</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_27_2" type="integer" groupName="configuration"
|
||||
min="0" max="255">
|
||||
<parameter name="config_27_2" type="integer" groupName="configuration">
|
||||
<label>27: Threshold Down.</label>
|
||||
<description><![CDATA[
|
||||
Command frame sent to the devices in 3rd group.<br /> <h1>Overview</h1><p> [THRESHOLD DOWN value - "On/Off (Power)" association group (3).]</p> <p>1-99 - forcing level of associated devices.</p> <p>The value of BASIC SET command frame sent to the devices associated in 3rd group "On/Off (Power)" if power dropped below value of parameter 22.</p>
|
||||
|
@ -305,6 +304,7 @@ Command frame sent to the devices in 3rd group.<br /> <h1>Overview</h1><p> [THR
|
|||
<option value="0">OFF.</option>
|
||||
<option value="255">Last State/ON.</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_30_1" type="integer" groupName="configuration">
|
||||
|
@ -325,8 +325,7 @@ Network alarms to which the Wall Plug will respond.<br /> <h1>Overview</h1><p>De
|
|||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_31_1" type="integer" groupName="configuration"
|
||||
min="0" max="50">
|
||||
<parameter name="config_31_1" type="integer" groupName="configuration">
|
||||
<label>31: Response to alarm frames.</label>
|
||||
<description><![CDATA[
|
||||
Wall plug response to alarms.<br /> <h1>Overview</h1><p>5-50 (0.5-5.0s, step 0.1s) - cyclically change device state with set period.</p> <p>This parameter defines how the Wall Plug will respond to alarms (device’s status change). In case of values 1 or 2 the Wall Plug is operating normally and LED frame signals an alarm through time defined in parameter 32 or until the alarm is canceled. In case of values 5 to 50 the Wall Plug does not report status change, power changes, ignores BASIC SET command frames. After time defined in parameter 32 or after the alarm cancellation, connected device is set to the previous state.</p>
|
||||
|
@ -337,6 +336,7 @@ Wall plug response to alarms.<br /> <h1>Overview</h1><p>5-50 (0.5-5.0s, step 0.1
|
|||
<option value="1">ON.</option>
|
||||
<option value="2">OFF.</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_32_2" type="integer" groupName="configuration"
|
||||
|
|
|
@ -65,7 +65,7 @@ Dual Digital or Analog Voltage input and Dual Contact Relay<br /> <h1>Overview</
|
|||
<property name="manufacturerId">0084</property>
|
||||
<property name="manufacturerRef">0463:0207,0463:0208</property>
|
||||
<property name="dbReference">700</property>
|
||||
<property name="defaultAssociations">1,2,3</property>
|
||||
<property name="defaultAssociations">1</property>
|
||||
</properties>
|
||||
|
||||
<!-- CONFIGURATION DESCRIPTIONS -->
|
||||
|
@ -92,7 +92,9 @@ Dual Digital or Analog Voltage input and Dual Contact Relay<br /> <h1>Overview</
|
|||
|
||||
<parameter name="config_1_1_000000E0" type="integer" groupName="configuration">
|
||||
<label>1: Relay 1 Trigger Configuration</label>
|
||||
<description>Relay 1 Trigger on Sensor Input</description>
|
||||
<description><![CDATA[
|
||||
Relay 1 Trigger on Sensor Input<br /> <h1>Overview</h1><p><br /></p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">Disabled</option>
|
||||
|
@ -240,11 +242,17 @@ Dual Digital or Analog Voltage input and Dual Contact Relay<br /> <h1>Overview</
|
|||
|
||||
<parameter name="group_2" type="text" groupName="association" multiple="true">
|
||||
<label>2: Sensor 1 On Change</label>
|
||||
<description><![CDATA[
|
||||
<br /> <h1>Overview</h1><p><br /></p>
|
||||
]]></description>
|
||||
<multipleLimit>2</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
<parameter name="group_3" type="text" groupName="association" multiple="true">
|
||||
<label>3: Sensor 2 On Change</label>
|
||||
<description><![CDATA[
|
||||
<br /> <h1>Overview</h1><p><br /></p>
|
||||
]]></description>
|
||||
<multipleLimit>2</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
|
|
|
@ -190,8 +190,7 @@ This parameter can be used to change the mode of the front-mounted status LED.<b
|
|||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_2_1" type="integer" groupName="configuration"
|
||||
min="0" max="99">
|
||||
<parameter name="config_2_1" type="integer" groupName="configuration">
|
||||
<label>2: Brightness of status LED.</label>
|
||||
<description><![CDATA[
|
||||
Determines the brightness of the status LED.<br /> <h1>Overview</h1><table><tr><td><strong>VALUE</strong></td> <td><strong>DESCRIPTION</strong></td> </tr><tr><td>0</td> <td>Switch off LED.</td> </tr><tr><td>1-99</td> <td>Brightness level (%). (Standard 50%)</td> </tr></table>
|
||||
|
@ -203,6 +202,7 @@ Determines the brightness of the status LED.<br /> <h1>Overview</h1><table><tr><
|
|||
<option value="99">Maximum brightness.</option>
|
||||
</options>
|
||||
<advanced>true</advanced>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_3_1" type="integer" groupName="configuration">
|
||||
|
|
|
@ -67,8 +67,12 @@ Wall Switch<br /> <h1>Overview</h1><p>Minoston MS10Z - a simple on/off switch wi
|
|||
</options>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_2_1" type="integer" groupName="configuration">
|
||||
<parameter name="config_2_1" type="integer" groupName="configuration"
|
||||
min="0" max="3">
|
||||
<label>2: Status LED Configuration</label>
|
||||
<description><![CDATA[
|
||||
<br /> <h1>Overview</h1><p><br /></p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">Output and the LED are in the different state.</option>
|
||||
|
@ -76,17 +80,19 @@ Wall Switch<br /> <h1>Overview</h1><p>Minoston MS10Z - a simple on/off switch wi
|
|||
<option value="2">LED Always OFF</option>
|
||||
<option value="3">LED Always ON</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_3_1" type="integer" groupName="configuration">
|
||||
<parameter name="config_3_1" type="integer" groupName="configuration"
|
||||
min="0" max="1">
|
||||
<label>3: Enable Auto Turn-Off Timer</label>
|
||||
<description><![CDATA[
|
||||
<br /> <h1>Overview</h1><p><br /></p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">Timer Disabled</option>
|
||||
<option value="1">Timer Enabled</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_4_4" type="integer" groupName="configuration"
|
||||
|
|
|
@ -191,7 +191,7 @@ In Wall Dual Relay(1 Way) Switch Module 2x 1.5kW with power meter<br /> <h1>Over
|
|||
<property name="manufacturerId">013C</property>
|
||||
<property name="manufacturerRef">0001:0003,0001:0012,0001:0014,0001:0061</property>
|
||||
<property name="dbReference">172</property>
|
||||
<property name="defaultAssociations">2,3</property>
|
||||
<property name="defaultAssociations">1</property>
|
||||
</properties>
|
||||
|
||||
<!-- CONFIGURATION DESCRIPTIONS -->
|
||||
|
@ -229,7 +229,8 @@ Period for reporting kWh meter<br /> <h1>Overview</h1><p>If the setting is confi
|
|||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_3_1" type="integer" groupName="configuration">
|
||||
<parameter name="config_3_1" type="integer" groupName="configuration"
|
||||
min="1" max="3">
|
||||
<label>3: Selected endpoint</label>
|
||||
<description><![CDATA[
|
||||
Which endpoint is addressed by the BASIC command class<br /> <h1>Overview</h1><p>If the Controller is not using Multi_Channel command class to access the endpoint of PAN04, you may configure the endpoint value to react the Basic Command Class</p>
|
||||
|
@ -240,38 +241,44 @@ Which endpoint is addressed by the BASIC command class<br /> <h1>Overview</h1><p
|
|||
<option value="2">Relay 2</option>
|
||||
<option value="3">Relay 1 + 2</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_4_1" type="integer" groupName="configuration">
|
||||
<parameter name="config_4_1" type="integer" groupName="configuration"
|
||||
min="1" max="3">
|
||||
<label>4: Switch mode</label>
|
||||
<description>Change the external switch mode</description>
|
||||
<description><![CDATA[
|
||||
Change the external switch mode<br /> <h1>Overview</h1><p><br /></p>
|
||||
]]></description>
|
||||
<default>1</default>
|
||||
<options>
|
||||
<option value="1">Edge mode</option>
|
||||
<option value="2">Pulse mode</option>
|
||||
<option value="3">Edge-Toggle mode</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_5_2" type="integer" groupName="configuration"
|
||||
min="0" max="65535">
|
||||
min="10" max="1500">
|
||||
<label>5: Threshold of Watt for Load Caution</label>
|
||||
<description>If threshold of wattage is reached, a meter report will be generated</description>
|
||||
<default>750</default>
|
||||
<description><![CDATA[
|
||||
If threshold of wattage is reached, a meter report will be generated<br /> <h1>Overview</h1><p><br /></p>
|
||||
]]></description>
|
||||
<default>1500</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_6_2" type="integer" groupName="configuration"
|
||||
min="0" max="65535">
|
||||
min="1" max="10000">
|
||||
<label>6: Threshold of kWh for Load Caution</label>
|
||||
<description>If threshold of kWh is reached, a Meter Report will be generated</description>
|
||||
<description><![CDATA[
|
||||
If threshold of kWh is reached, a Meter Report will be generated<br /> <h1>Overview</h1><p><br /></p>
|
||||
]]></description>
|
||||
<default>10000</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_7_1" type="integer" groupName="configuration">
|
||||
<parameter name="config_7_1" type="integer" groupName="configuration"
|
||||
min="0" max="2">
|
||||
<label>7: Restore switch state mode</label>
|
||||
<description><![CDATA[
|
||||
Restore switch state mode<br /> <h1>Overview</h1><p>Restores the switch state setting in case the device was disconnected from the power source.</p>
|
||||
|
@ -282,11 +289,10 @@ Restore switch state mode<br /> <h1>Overview</h1><p>Restores the switch state se
|
|||
<option value="1">Last State</option>
|
||||
<option value="2">Switch On</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_8_2" type="integer" groupName="configuration"
|
||||
min="0" max="65535">
|
||||
min="0" max="32767">
|
||||
<label>8: Auto Off Timer</label>
|
||||
<description><![CDATA[
|
||||
Auto Off Timer<br /> <h1>Overview</h1><p>Whenever the device switches to on, the auto off timer begin to count down. After the timer decrease to zero, it will switch off automatically.</p>
|
||||
|
@ -326,14 +332,23 @@ Endpoint 3<br /> <h1>Overview</h1><p>Multi-Channel Command is a good way to cont
|
|||
<!-- ASSOCIATION DEFINITIONS -->
|
||||
<parameter name="group_1" type="text" groupName="association">
|
||||
<label>1: Relay 1 + 2</label>
|
||||
<description><![CDATA[
|
||||
<br /> <h1>Overview</h1><p><br /></p>
|
||||
]]></description>
|
||||
</parameter>
|
||||
|
||||
<parameter name="group_2" type="text" groupName="association">
|
||||
<label>2: Relay 1</label>
|
||||
<description><![CDATA[
|
||||
<br /> <h1>Overview</h1><p><br /></p>
|
||||
]]></description>
|
||||
</parameter>
|
||||
|
||||
<parameter name="group_3" type="text" groupName="association">
|
||||
<label>3: Relay 2</label>
|
||||
<description><![CDATA[
|
||||
<br /> <h1>Overview</h1><p><br /></p>
|
||||
]]></description>
|
||||
</parameter>
|
||||
|
||||
<!-- STATIC DEFINITIONS -->
|
||||
|
|
|
@ -256,8 +256,7 @@ maximum power threshold of all phases together<br /> <h1>Overview</h1><p>Externa
|
|||
<advanced>true</advanced>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_112_2" type="integer" groupName="configuration"
|
||||
min="0" max="32535">
|
||||
<parameter name="config_112_2" type="integer" groupName="configuration">
|
||||
<label>112: Power threshold – Delay before power on</label>
|
||||
<description><![CDATA[
|
||||
Power threshold – Delay before power on<br /> <h1>Overview</h1><p>External IR relay/ External relay is turned off due to detected overload (as set by parameter 106&107) and remains off for a time, defined in this parameter. After that time, the output turns on to check, if the overload is still present.</p> <p>Available configuration parameters (data type is 2 Byte DEC)</p> <ul><li>Default value 0 (disabled)</li> <li>0 – External IR relay/ External relay will not turn back on</li> <li>30 – 32535 = 30 s – 32535 s</li> </ul><p><strong>NOTE:</strong> the delay time may be prolonged for more then 10s of the time set by the parameter.</p>
|
||||
|
@ -267,6 +266,7 @@ Power threshold – Delay before power on<br /> <h1>Overview</h1><p>External IR
|
|||
<option value="0">External relay will not turn back on</option>
|
||||
</options>
|
||||
<advanced>true</advanced>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<!-- ASSOCIATION DEFINITIONS -->
|
||||
|
|
|
@ -162,8 +162,7 @@ SLAVE_MODE<br /> <h1>Overview</h1><p><strong>"Stupid" mode (bit 2 = 1):</strong>
|
|||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_10_2" type="integer" groupName="configuration"
|
||||
min="0" max="209">
|
||||
<parameter name="config_10_2" type="integer" groupName="configuration">
|
||||
<label>10: Off behaviour (timeout)</label>
|
||||
<description><![CDATA[
|
||||
OFF_BEHAVIOUR<br /> <h1>Overview</h1><p>Behaviour after BASIC OFF (and similar commands).<br />If a transition (even with zero change) with a non-default duration is to be pro-<br />cessed, the transition cannot be interrupted by any motion event in any case.</p> <p>0 = Lamp/Relay is switched off and remains so until any new motion event (local or remote) is received.</p> <p>1 - 209 = Lamp/Relay is switched off and remains so until after a specified timeout once a new motion event (local or remote) is received.<br /> Timeout:<br /> 1..100 – 1 second (1) to 100 seconds (100) in 1-second resolution<br /> 101..200 – 1 minute (101) to 100 minutes (200) 1-minute resolution<br /> 201..209 – 1 hour (201) to 9 hours (209) in 1-hour resolution</p> <p>210 - 254 = Reserved</p> <p>255 = Lamp/relay is switched off for TIME (cfg 1). It does not wait for a motion event and works normally via current motion evaluation.</p>
|
||||
|
@ -172,6 +171,7 @@ OFF_BEHAVIOUR<br /> <h1>Overview</h1><p>Behaviour after BASIC OFF (and similar c
|
|||
<options>
|
||||
<option value="255">Lamp/relay is switched off for TIME (cfg 1)</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_11_2" type="integer" groupName="configuration"
|
||||
|
|
|
@ -113,14 +113,16 @@ In Wall Dimmer module<br /> <h1>Overview</h1><p>Z-Wave Built-in receiver with di
|
|||
</options>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_4_1" type="integer" groupName="configuration"
|
||||
min="0" max="127">
|
||||
<parameter name="config_4_1" type="integer" groupName="configuration">
|
||||
<label>4: Default Fade Time</label>
|
||||
<description>Default Fade Time in Seconds</description>
|
||||
<description><![CDATA[
|
||||
Default Fade Time in Seconds<br /> <h1>Overview</h1><p><br /></p>
|
||||
]]></description>
|
||||
<default>1</default>
|
||||
<options>
|
||||
<option value="0">Instantly</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_5_1" type="integer" groupName="configuration"
|
||||
|
|
|
@ -131,8 +131,7 @@ LED Indicator Control<br /> <h1>Overview</h1><p>Choose if you want the LED indic
|
|||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_6_4" type="integer" groupName="configuration"
|
||||
min="0" max="65535">
|
||||
<parameter name="config_6_4" type="integer" groupName="configuration">
|
||||
<label>6: Auto Turn-Off Timer for Relay 1</label>
|
||||
<description><![CDATA[
|
||||
Auto Turn-Off Timer for Relay 1<br /> <h1>Overview</h1><p>Use this parameter to set the time after which you want the device connected to Relay 1 to automatically turn off once it has been turned on. The number entered as value corresponds to the number of minutes.</p>
|
||||
|
@ -141,10 +140,10 @@ Auto Turn-Off Timer for Relay 1<br /> <h1>Overview</h1><p>Use this parameter to
|
|||
<options>
|
||||
<option value="0">Timer disabled (default)</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_7_4" type="integer" groupName="configuration"
|
||||
min="0" max="65535">
|
||||
<parameter name="config_7_4" type="integer" groupName="configuration">
|
||||
<label>7: Auto Turn-On Timer for Relay 1</label>
|
||||
<description><![CDATA[
|
||||
Auto Turn-On Timer for Relay 1<br /> <h1>Overview</h1><p>Use this parameter to set the time after which you want the device connected to Relay 1 to automatically turn on once it has been turned off. The number entered as value corresponds to the number of minutes.</p>
|
||||
|
@ -153,10 +152,10 @@ Auto Turn-On Timer for Relay 1<br /> <h1>Overview</h1><p>Use this parameter to s
|
|||
<options>
|
||||
<option value="0">Timer disabled (default)</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_8_4" type="integer" groupName="configuration"
|
||||
min="0" max="65535">
|
||||
<parameter name="config_8_4" type="integer" groupName="configuration">
|
||||
<label>8: Auto Turn-Off Timer for Relay 2</label>
|
||||
<description><![CDATA[
|
||||
Auto Turn-Off Timer for Relay 2<br /> <h1>Overview</h1><p>Use this parameter to set the time after which you want the device connected to Relay 2 to automatically turn off once it has been turned on. The number entered as value corresponds to the number of minutes.</p>
|
||||
|
@ -165,10 +164,10 @@ Auto Turn-Off Timer for Relay 2<br /> <h1>Overview</h1><p>Use this parameter to
|
|||
<options>
|
||||
<option value="0">Timer disabled (default)</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_9_4" type="integer" groupName="configuration"
|
||||
min="0" max="65535">
|
||||
<parameter name="config_9_4" type="integer" groupName="configuration">
|
||||
<label>9: Auto Turn-On Timer for Relay 2</label>
|
||||
<description><![CDATA[
|
||||
Auto Turn-On Timer for Relay 2<br /> <h1>Overview</h1><p>Use this parameter to set the time after which you want the device connected to Relay 2 to automatically turn on once it has been turned off. The number entered as value corresponds to the number of minutes.</p>
|
||||
|
@ -177,10 +176,10 @@ Auto Turn-On Timer for Relay 2<br /> <h1>Overview</h1><p>Use this parameter to s
|
|||
<options>
|
||||
<option value="0">Timer disabled (default)</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_10_4" type="integer" groupName="configuration"
|
||||
min="0" max="65535">
|
||||
<parameter name="config_10_4" type="integer" groupName="configuration">
|
||||
<label>10: Auto Turn-Off Timer for Relay 3</label>
|
||||
<description><![CDATA[
|
||||
Auto Turn-Off Timer for Relay 3<br /> <h1>Overview</h1><p>Use this parameter to set the time after which you want the device connected to Relay 3 to automatically turn off once it has been turned on. The number entered as value corresponds to the number of minutes.</p>
|
||||
|
@ -189,10 +188,10 @@ Auto Turn-Off Timer for Relay 3<br /> <h1>Overview</h1><p>Use this parameter to
|
|||
<options>
|
||||
<option value="0">Timer disabled (default)</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_11_4" type="integer" groupName="configuration"
|
||||
min="0" max="65535">
|
||||
<parameter name="config_11_4" type="integer" groupName="configuration">
|
||||
<label>11: Auto Turn-On Timer for Relay 3</label>
|
||||
<description><![CDATA[
|
||||
Auto Turn-On Timer for Relay 3<br /> <h1>Overview</h1><p>Use this parameter to set the time after which you want the device connected to Relay 3 to automatically turn on once it has been turned off. The number entered as value corresponds to the number of minutes.</p>
|
||||
|
@ -201,6 +200,7 @@ Auto Turn-On Timer for Relay 3<br /> <h1>Overview</h1><p>Use this parameter to s
|
|||
<options>
|
||||
<option value="0">Timer disabled (default)</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_12_1" type="integer" groupName="configuration">
|
||||
|
|
|
@ -87,7 +87,7 @@ Multirelay<br /> <h1>Overview</h1><p><strong>Features</strong></p> <ul><li>Power
|
|||
<property name="vendor">Zooz</property>
|
||||
<property name="modelId">ZEN16</property>
|
||||
<property name="manufacturerId">027A</property>
|
||||
<property name="manufacturerRef">A000:A055</property>
|
||||
<property name="manufacturerRef">A000:A00A,A000:A055</property>
|
||||
<property name="versionMin">1.10</property>
|
||||
<property name="versionMax">1.30</property>
|
||||
<property name="dbReference">1326</property>
|
||||
|
@ -183,8 +183,7 @@ LED Indicator Control<br /> <h1>Overview</h1><p>Choose if you want the LED indic
|
|||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_6_4" type="integer" groupName="configuration"
|
||||
min="0" max="65535">
|
||||
<parameter name="config_6_4" type="integer" groupName="configuration">
|
||||
<label>6: Auto Turn-Off Timer for Relay 1</label>
|
||||
<description><![CDATA[
|
||||
Auto Turn-Off Timer for Relay 1<br /> <h1>Overview</h1><p>Use this parameter to set the time after which you want the device connected to Relay 1 to automatically turn off once it has been turned on. The number entered as value corresponds to the number of minutes.</p>
|
||||
|
@ -193,10 +192,10 @@ Auto Turn-Off Timer for Relay 1<br /> <h1>Overview</h1><p>Use this parameter to
|
|||
<options>
|
||||
<option value="0">Timer disabled (default)</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_7_4" type="integer" groupName="configuration"
|
||||
min="0" max="65535">
|
||||
<parameter name="config_7_4" type="integer" groupName="configuration">
|
||||
<label>7: Auto Turn-On Timer for Relay 1</label>
|
||||
<description><![CDATA[
|
||||
Auto Turn-On Timer for Relay 1<br /> <h1>Overview</h1><p>Use this parameter to set the time after which you want the device connected to Relay 1 to automatically turn on once it has been turned off. The number entered as value corresponds to the number of minutes.</p>
|
||||
|
@ -205,10 +204,10 @@ Auto Turn-On Timer for Relay 1<br /> <h1>Overview</h1><p>Use this parameter to s
|
|||
<options>
|
||||
<option value="0">Timer disabled (default)</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_8_4" type="integer" groupName="configuration"
|
||||
min="0" max="65535">
|
||||
<parameter name="config_8_4" type="integer" groupName="configuration">
|
||||
<label>8: Auto Turn-Off Timer for Relay 2</label>
|
||||
<description><![CDATA[
|
||||
Auto Turn-Off Timer for Relay 2<br /> <h1>Overview</h1><p>Use this parameter to set the time after which you want the device connected to Relay 2 to automatically turn off once it has been turned on. The number entered as value corresponds to the number of minutes.</p>
|
||||
|
@ -217,10 +216,10 @@ Auto Turn-Off Timer for Relay 2<br /> <h1>Overview</h1><p>Use this parameter to
|
|||
<options>
|
||||
<option value="0">Timer disabled (default)</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_9_4" type="integer" groupName="configuration"
|
||||
min="0" max="65535">
|
||||
<parameter name="config_9_4" type="integer" groupName="configuration">
|
||||
<label>9: Auto Turn-On Timer for Relay 2</label>
|
||||
<description><![CDATA[
|
||||
Auto Turn-On Timer for Relay 2<br /> <h1>Overview</h1><p>Use this parameter to set the time after which you want the device connected to Relay 2 to automatically turn on once it has been turned off. The number entered as value corresponds to the number of minutes.</p>
|
||||
|
@ -229,10 +228,10 @@ Auto Turn-On Timer for Relay 2<br /> <h1>Overview</h1><p>Use this parameter to s
|
|||
<options>
|
||||
<option value="0">Timer disabled (default)</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_10_4" type="integer" groupName="configuration"
|
||||
min="0" max="65535">
|
||||
<parameter name="config_10_4" type="integer" groupName="configuration">
|
||||
<label>10: Auto Turn-Off Timer for Relay 3</label>
|
||||
<description><![CDATA[
|
||||
Auto Turn-Off Timer for Relay 3<br /> <h1>Overview</h1><p>Use this parameter to set the time after which you want the device connected to Relay 3 to automatically turn off once it has been turned on. The number entered as value corresponds to the number of minutes.</p>
|
||||
|
@ -241,10 +240,10 @@ Auto Turn-Off Timer for Relay 3<br /> <h1>Overview</h1><p>Use this parameter to
|
|||
<options>
|
||||
<option value="0">Timer disabled (default)</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_11_4" type="integer" groupName="configuration"
|
||||
min="0" max="65535">
|
||||
<parameter name="config_11_4" type="integer" groupName="configuration">
|
||||
<label>11: Auto Turn-On Timer for Relay 3</label>
|
||||
<description><![CDATA[
|
||||
Auto Turn-On Timer for Relay 3<br /> <h1>Overview</h1><p>Use this parameter to set the time after which you want the device connected to Relay 3 to automatically turn on once it has been turned off. The number entered as value corresponds to the number of minutes.</p>
|
||||
|
@ -253,6 +252,7 @@ Auto Turn-On Timer for Relay 3<br /> <h1>Overview</h1><p>Use this parameter to s
|
|||
<options>
|
||||
<option value="0">Timer disabled (default)</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_12_1" type="integer" groupName="configuration">
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
# How to backup your openHABian server using Amanda
|
||||
|
||||
# Intro
|
||||
## The need for recovery
|
||||
First, make yourself aware how important a comprehensive backup and recovery concept is.
|
||||
Yes, this text is the README on the backup software part for openHABian that you're reading, but take a couple of minutes to
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
## Mail Transfer Agent configuration
|
||||
|
||||
When you choose the "Mail Transfer Agent" install option in `openhabian-config` menu to install `exim4` as the mail transfer agent on your system, you will be presented with a number of questions on how to relay emails through a public service such as Google gmail.
|
||||
In case you enter anything wrong you can re-initiate the installation process from the openHABian menu
|
||||
Here's what you will need to enter:
|
||||
|
||||
* Mail server type: mail sent by smarthost (received via SMTP or fetchmail)
|
||||
* System mail name: FQDN (your full hostname including the domain part)
|
||||
* IPs that should be allowed by the server: 127.0.0.1; ::1; 192.168.xxx.yyy (replace with your hosts's IP)
|
||||
* Other destinations for which mail is accepted: `<hostname> <hostname>.<domainname> <domainname>`
|
||||
* Machines to relay mail for: Leave empty
|
||||
* IP address or host name of the outgoing smarthost: `smtp.gmail.com::587`
|
||||
* Hide local mail name in outgoing mail: No
|
||||
* Keep number of DNS-queries minimal: No
|
||||
* Delivery method: Select: Maildir format in home directory
|
||||
* Split configuration into small files: Yes
|
||||
* List of smarthost(s) to use your account for: `*`
|
||||
* Mail username of the public service to relay all outgoing mail to:
|
||||
Your username for the mail relay service to use such as `my_id@gmail.com`
|
Loading…
Reference in New Issue