diff --git a/bundles/org.openhab.binding.modbus.stiebeleltron/README.md b/bundles/org.openhab.binding.modbus.stiebeleltron/README.md index bcf9e95faec..7af3cf94d85 100644 --- a/bundles/org.openhab.binding.modbus.stiebeleltron/README.md +++ b/bundles/org.openhab.binding.modbus.stiebeleltron/README.md @@ -52,6 +52,7 @@ The following parameters are valid for all thing types: | maxTries | integer | no | 3 | Number of retries when before giving up reading from this thing. | A typcial bridge and thing setup would look like this: + ```java Bridge modbus:tcp:bridge [ host="10.0.0.2", port=502, id=1 ] { Thing heatpump StiebelEltronHP "Stiebel Eltron Heat Pump" (modbus:tcp:bridge) @"room" [ ] @@ -78,6 +79,7 @@ This groups contain general state information about the heat pump. | is-summer | Contact | true | OPEN in case the heat pump is currently in summer mode | #### Channels supported by things *Stiebel Eltron Heat Pump (WPMsystem)*, *Stiebel Eltron Heat Pump (WPM3)* and *Stiebel Eltron Heat Pump (WPM3i)* + Note: The column WPM is for WPMsystem. | Channel ID | Item Type | Read only | Description | WPM | WPM3 | WPM3i | @@ -132,6 +134,7 @@ This group contains system paramters of the heat pump. | eco-temperature-water | Number:Temperature | false | The current hot water eco temperature | #### Channels supported by things *Stiebel Eltron Heat Pump (WPMsystem)*, *Stiebel Eltron Heat Pump (WPM3)* and *Stiebel Eltron Heat Pump (WPM3i)* + Note: The column WPM is for WPMsystem. | Channel ID | Item Type | Read only | Description | WPM | WPM3 | WPM3i | @@ -187,6 +190,7 @@ This group contains general operational information about the device. | water-temperature-setpoint | Number:Temperature | true | The current water temperature set point | #### Channels supported by things *Stiebel Eltron Heat Pump (WPMsystem)*, *Stiebel Eltron Heat Pump (WPM3)* and *Stiebel Eltron Heat Pump (WPM3i)* + Note: The column WPM is for WPMsystem. | Channel ID | Item Type | Read only | Description | WPM | WPM3 | WPM3i | @@ -238,6 +242,7 @@ Note: The column WPM is for WPMsystem. This group contains information about the energy consumption and delivery of the heat pump. #### Channels supported by things *Stiebel Eltron Heat Pump*, *Stiebel Eltron Heat Pump (WPMsystem)* and *Stiebel Eltron Heat Pump (WPM3)* + Note: The column WPM is for WPMsystem. | Channel ID | Item Type | Read only | Description | heatpump | WPM | WPM3 | @@ -282,6 +287,7 @@ of compressor and emergency heating for heating, cooling and hot water productio ### SG Ready - Energy Management Settings + | Channel ID | Item Type | Read only | Description | | -----------------------| ----------| --------- | -----------------------| | sg-ready-on-off-switch | Number | false | SG Ready On/Off Switch | @@ -289,6 +295,7 @@ of compressor and emergency heating for heating, cooling and hot water productio ### SG Ready - Energy Management System Information + | Channel ID | Item Type | Read only | Description | | ---------------------------------- | ----------| --------- | -----------------------------------| | sg-ready-operating-state | Number | true | SG Ready Operating State | @@ -400,6 +407,7 @@ Text label="Heat pumpt" icon="temperature" { ## Full Example for the things things *Stiebel Eltron Heat Pump (WPM3)*, *Stiebel Eltron Heat Pump (WPM3)*, *Stiebel Eltron Heat Pump (WPM3i)* and *Stiebel Eltron ISG SG Ready EM* ### Thing Configuration + Just use one of the heat pump things between the curly braces. ```java diff --git a/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/dto/RuntimeBlockWpm3i.java b/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/dto/RuntimeBlockWpm3i.java index 6da2925f71d..9514fe028d5 100755 --- a/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/dto/RuntimeBlockWpm3i.java +++ b/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/dto/RuntimeBlockWpm3i.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2010-2023 Contributors to the openHAB project + * Copyright (c) 2010-2024 Contributors to the openHAB project * * See the NOTICE file(s) distributed with this work for additional * information. diff --git a/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/dto/SgReadyEnergyManagementSettingsBlock.java b/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/dto/SgReadyEnergyManagementSettingsBlock.java index b3a51ba5b53..9169404d0f2 100755 --- a/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/dto/SgReadyEnergyManagementSettingsBlock.java +++ b/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/dto/SgReadyEnergyManagementSettingsBlock.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2010-2023 Contributors to the openHAB project + * Copyright (c) 2010-2024 Contributors to the openHAB project * * See the NOTICE file(s) distributed with this work for additional * information. diff --git a/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/dto/SgReadyEnergyManagementSystemInformationBlock.java b/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/dto/SgReadyEnergyManagementSystemInformationBlock.java index 27ba180b587..3a362cfe530 100755 --- a/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/dto/SgReadyEnergyManagementSystemInformationBlock.java +++ b/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/dto/SgReadyEnergyManagementSystemInformationBlock.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2010-2023 Contributors to the openHAB project + * Copyright (c) 2010-2024 Contributors to the openHAB project * * See the NOTICE file(s) distributed with this work for additional * information. diff --git a/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/dto/SystemParameterBlockAllWpm.java b/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/dto/SystemParameterBlockAllWpm.java index e9fef53b968..d3a97a830ff 100755 --- a/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/dto/SystemParameterBlockAllWpm.java +++ b/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/dto/SystemParameterBlockAllWpm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2010-2023 Contributors to the openHAB project + * Copyright (c) 2010-2024 Contributors to the openHAB project * * See the NOTICE file(s) distributed with this work for additional * information. diff --git a/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/dto/SystemStateBlockAllWpm.java b/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/dto/SystemStateBlockAllWpm.java index afd418137f5..26d9597bf13 100755 --- a/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/dto/SystemStateBlockAllWpm.java +++ b/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/dto/SystemStateBlockAllWpm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2010-2023 Contributors to the openHAB project + * Copyright (c) 2010-2024 Contributors to the openHAB project * * See the NOTICE file(s) distributed with this work for additional * information. diff --git a/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/handler/StiebelEltronHandlerIsgSgReadyEm.java b/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/handler/StiebelEltronHandlerIsgSgReadyEm.java index 11d855574da..0d74bfa7dda 100755 --- a/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/handler/StiebelEltronHandlerIsgSgReadyEm.java +++ b/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/handler/StiebelEltronHandlerIsgSgReadyEm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2010-2023 Contributors to the openHAB project + * Copyright (c) 2010-2024 Contributors to the openHAB project * * See the NOTICE file(s) distributed with this work for additional * information. diff --git a/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/parser/RuntimeBlockParser.java b/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/parser/RuntimeBlockParser.java index f36bc5d65c3..a2596d7ae5b 100755 --- a/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/parser/RuntimeBlockParser.java +++ b/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/parser/RuntimeBlockParser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2010-2023 Contributors to the openHAB project + * Copyright (c) 2010-2024 Contributors to the openHAB project * * See the NOTICE file(s) distributed with this work for additional * information. diff --git a/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/parser/SgReadyEnergyManagementSettingsBlockParser.java b/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/parser/SgReadyEnergyManagementSettingsBlockParser.java index 9d905b512f0..d1aaa46c392 100755 --- a/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/parser/SgReadyEnergyManagementSettingsBlockParser.java +++ b/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/parser/SgReadyEnergyManagementSettingsBlockParser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2010-2022 Contributors to the openHAB project + * Copyright (c) 2010-2024 Contributors to the openHAB project * * See the NOTICE file(s) distributed with this work for additional * information. diff --git a/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/parser/SgReadyEnergyManagementSystemInformationBlockParser.java b/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/parser/SgReadyEnergyManagementSystemInformationBlockParser.java index 70f10717ccb..44b390c852d 100755 --- a/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/parser/SgReadyEnergyManagementSystemInformationBlockParser.java +++ b/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/parser/SgReadyEnergyManagementSystemInformationBlockParser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2010-2022 Contributors to the openHAB project + * Copyright (c) 2010-2024 Contributors to the openHAB project * * See the NOTICE file(s) distributed with this work for additional * information. diff --git a/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/parser/SystemParameterBlockAllWpmParser.java b/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/parser/SystemParameterBlockAllWpmParser.java index dea45bf575e..96fe14b1b5f 100755 --- a/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/parser/SystemParameterBlockAllWpmParser.java +++ b/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/parser/SystemParameterBlockAllWpmParser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2010-2023 Contributors to the openHAB project + * Copyright (c) 2010-2024 Contributors to the openHAB project * * See the NOTICE file(s) distributed with this work for additional * information. diff --git a/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/parser/SystemStateBlockParserAllWpm.java b/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/parser/SystemStateBlockParserAllWpm.java index 7321d98bbd5..a49c12dab1e 100755 --- a/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/parser/SystemStateBlockParserAllWpm.java +++ b/bundles/org.openhab.binding.modbus.stiebeleltron/src/main/java/org/openhab/binding/modbus/stiebeleltron/internal/parser/SystemStateBlockParserAllWpm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2010-2022 Contributors to the openHAB project + * Copyright (c) 2010-2024 Contributors to the openHAB project * * See the NOTICE file(s) distributed with this work for additional * information.