-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WPMsystem and WPM3 now with Energy and Runtime Block
Using now EnergyAndRuntimeBlock for all new WMP things. Added the registers 3523-3545 for HP1 to WPMsystem and WPM3. Signed-off-by: Thomas Burri <[email protected]>
- Loading branch information
Showing
17 changed files
with
719 additions
and
269 deletions.
There are no files selected for viewing
110 changes: 64 additions & 46 deletions
110
bundles/org.openhab.binding.modbus.stiebeleltron/README.md
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
.../java/org/openhab/binding/modbus/stiebeleltron/internal/dto/EnergyRuntimeBlockAllWpm.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
* Copyright (c) 2010-2025 Contributors to the openHAB project | ||
* | ||
* See the NOTICE file(s) distributed with this work for additional | ||
* information. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0 | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
*/ | ||
package org.openhab.binding.modbus.stiebeleltron.internal.dto; | ||
|
||
/** | ||
* Dto class for the Runtime Block of any WPM/WPM3/WPM3i compatible heat pump | ||
* | ||
* @author Thomas Burri - Initial contribution | ||
* | ||
*/ | ||
public class EnergyRuntimeBlockAllWpm extends EnergyBlock { | ||
|
||
// Runtime common | ||
public int runtimeCompressorHeating; | ||
public int runtimeCompressorHotwater; | ||
public int runtimeCompressorCooling; | ||
public int runtimeNhz1; | ||
public int runtimeNhz2; | ||
public int runtimeNhz12; | ||
|
||
// Production | ||
public int hp1ProductionHeatToday; | ||
public int hp1ProductionHeatTotalLow; | ||
public int hp1ProductionHeatTotalHigh; | ||
public int hp1ProductionWaterToday; | ||
public int hp1ProductionWaterTotalLow; | ||
public int hp1ProductionWaterTotalHigh; | ||
public int hp1ProductionNhzHeatingTotalLow; | ||
public int hp1ProductionNhzHeatingTotalHigh; | ||
public int hp1ProductionNhzHotwaterTotalLow; | ||
public int hp1ProductionNhzHotwaterTotalHigh; | ||
|
||
// Consumption | ||
public int hp1ConsumptionHeatToday; | ||
public int hp1ConsumptionHeatTotalLow; | ||
public int hp1ConsumptionHeatTotalHigh; | ||
public int hp1ConsumptionWaterToday; | ||
public int hp1ConsumptionWaterTotalLow; | ||
public int hp1ConsumptionWaterTotalHigh; | ||
|
||
// Runtime WPMsystem/WPM3 | ||
public int hp1RuntimeCompressor1Heating; | ||
public int hp1RuntimeCompressor2Heating; | ||
public int hp1RuntimeCompressor12Heating; | ||
public int hp1RuntimeCompressor1Hotwater; | ||
public int hp1RuntimeCompressor2Hotwater; | ||
public int hp1RuntimeCompressor12Hotwater; | ||
public int hp1RuntimeCompressorCooling; | ||
} |
29 changes: 0 additions & 29 deletions
29
...rc/main/java/org/openhab/binding/modbus/stiebeleltron/internal/dto/RuntimeBlockWpm3i.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.