Fixed typo in class names

Class names fixed are 'SystemInformationBlockParser' and
'SystemInformationBlockAllWpmParser'.

Signed-off-by: Thomas Burri <th@thonojato.ch>
This commit is contained in:
Thomas Burri 2025-01-08 17:26:14 +01:00
parent 1242c1ae3e
commit 7282b597e7
7 changed files with 14 additions and 10 deletions

View File

@ -44,9 +44,12 @@ public class SystemInformationBlockAllWpm extends SystemInformationBlock {
public short temperatureAreaCooling; public short temperatureAreaCooling;
public short temperatureAreaCoolingSetPoint; public short temperatureAreaCoolingSetPoint;
// The following three values are only available for WPM3
public short temperatureCollectorSolar; public short temperatureCollectorSolar;
public short temperatureCylinderSolar; public short temperatureCylinderSolar;
public int runtimeSolar; public int runtimeSolar;
// The following three values are only available for WPMsystem and WPM3
public short temperatureExtHeatSource; public short temperatureExtHeatSource;
public short temperatureExtHeatSourceSetPoint; public short temperatureExtHeatSourceSetPoint;
public int runtimeExtHeatSource; public int runtimeExtHeatSource;
@ -57,6 +60,7 @@ public class SystemInformationBlockAllWpm extends SystemInformationBlock {
public short temperatureSourceMin; public short temperatureSourceMin;
public short pressureSource; public short pressureSource;
// The following three values are only available for WPM3i
public short temperatureHotgas; public short temperatureHotgas;
public short pressureHigh; public short pressureHigh;
public short pressureLow; public short pressureLow;

View File

@ -30,7 +30,7 @@ import org.openhab.binding.modbus.stiebeleltron.internal.dto.SystemInformationBl
import org.openhab.binding.modbus.stiebeleltron.internal.dto.SystemParameterBlock; import org.openhab.binding.modbus.stiebeleltron.internal.dto.SystemParameterBlock;
import org.openhab.binding.modbus.stiebeleltron.internal.dto.SystemStateBlock; import org.openhab.binding.modbus.stiebeleltron.internal.dto.SystemStateBlock;
import org.openhab.binding.modbus.stiebeleltron.internal.parser.EnergyBlockParser; import org.openhab.binding.modbus.stiebeleltron.internal.parser.EnergyBlockParser;
import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemInfromationBlockParser; import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemInformationBlockParser;
import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemParameterBlockParser; import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemParameterBlockParser;
import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemStateBlockParser; import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemStateBlockParser;
import org.openhab.core.io.transport.modbus.AsyncModbusFailure; import org.openhab.core.io.transport.modbus.AsyncModbusFailure;
@ -134,7 +134,7 @@ public class StiebelEltronHandler extends BaseThingHandler {
/** /**
* Parser used to convert incoming raw messages into system blocks * Parser used to convert incoming raw messages into system blocks
*/ */
private final SystemInfromationBlockParser systemInformationBlockParser = new SystemInfromationBlockParser(); private final SystemInformationBlockParser systemInformationBlockParser = new SystemInformationBlockParser();
/** /**
* Parser used to convert incoming raw messages into system state blocks * Parser used to convert incoming raw messages into system state blocks
*/ */

View File

@ -30,7 +30,7 @@ import org.openhab.binding.modbus.stiebeleltron.internal.dto.SystemInformationBl
import org.openhab.binding.modbus.stiebeleltron.internal.dto.SystemParameterBlockAllWpm; import org.openhab.binding.modbus.stiebeleltron.internal.dto.SystemParameterBlockAllWpm;
import org.openhab.binding.modbus.stiebeleltron.internal.dto.SystemStateBlockAllWpm; import org.openhab.binding.modbus.stiebeleltron.internal.dto.SystemStateBlockAllWpm;
import org.openhab.binding.modbus.stiebeleltron.internal.parser.EnergyBlockParser; import org.openhab.binding.modbus.stiebeleltron.internal.parser.EnergyBlockParser;
import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemInfromationBlockAllWpmParser; import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemInformationBlockAllWpmParser;
import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemParameterBlockAllWpmParser; import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemParameterBlockAllWpmParser;
import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemStateBlockParserAllWpm; import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemStateBlockParserAllWpm;
import org.openhab.core.io.transport.modbus.AsyncModbusFailure; import org.openhab.core.io.transport.modbus.AsyncModbusFailure;
@ -137,7 +137,7 @@ public class StiebelEltronHandlerWpm extends BaseThingHandler {
/** /**
* Parser used to convert incoming raw messages into system blocks * Parser used to convert incoming raw messages into system blocks
*/ */
private final SystemInfromationBlockAllWpmParser systemInformationBlockParser = new SystemInfromationBlockAllWpmParser(); private final SystemInformationBlockAllWpmParser systemInformationBlockParser = new SystemInformationBlockAllWpmParser();
/** /**
* Parser used to convert incoming raw messages into system parameter blocks * Parser used to convert incoming raw messages into system parameter blocks
*/ */

View File

@ -30,7 +30,7 @@ import org.openhab.binding.modbus.stiebeleltron.internal.dto.SystemInformationBl
import org.openhab.binding.modbus.stiebeleltron.internal.dto.SystemParameterBlockAllWpm; import org.openhab.binding.modbus.stiebeleltron.internal.dto.SystemParameterBlockAllWpm;
import org.openhab.binding.modbus.stiebeleltron.internal.dto.SystemStateBlockAllWpm; import org.openhab.binding.modbus.stiebeleltron.internal.dto.SystemStateBlockAllWpm;
import org.openhab.binding.modbus.stiebeleltron.internal.parser.EnergyBlockParser; import org.openhab.binding.modbus.stiebeleltron.internal.parser.EnergyBlockParser;
import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemInfromationBlockAllWpmParser; import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemInformationBlockAllWpmParser;
import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemParameterBlockAllWpmParser; import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemParameterBlockAllWpmParser;
import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemStateBlockParserAllWpm; import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemStateBlockParserAllWpm;
import org.openhab.core.io.transport.modbus.AsyncModbusFailure; import org.openhab.core.io.transport.modbus.AsyncModbusFailure;
@ -137,7 +137,7 @@ public class StiebelEltronHandlerWpm3 extends BaseThingHandler {
/** /**
* Parser used to convert incoming raw messages into system blocks * Parser used to convert incoming raw messages into system blocks
*/ */
private final SystemInfromationBlockAllWpmParser systemInformationBlockParser = new SystemInfromationBlockAllWpmParser(); private final SystemInformationBlockAllWpmParser systemInformationBlockParser = new SystemInformationBlockAllWpmParser();
/** /**
* Parser used to convert incoming raw messages into system parameter blocks * Parser used to convert incoming raw messages into system parameter blocks
*/ */

View File

@ -32,7 +32,7 @@ import org.openhab.binding.modbus.stiebeleltron.internal.dto.SystemParameterBloc
import org.openhab.binding.modbus.stiebeleltron.internal.dto.SystemStateBlockAllWpm; import org.openhab.binding.modbus.stiebeleltron.internal.dto.SystemStateBlockAllWpm;
import org.openhab.binding.modbus.stiebeleltron.internal.parser.EnergyBlockParser; import org.openhab.binding.modbus.stiebeleltron.internal.parser.EnergyBlockParser;
import org.openhab.binding.modbus.stiebeleltron.internal.parser.RuntimeBlockParser; import org.openhab.binding.modbus.stiebeleltron.internal.parser.RuntimeBlockParser;
import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemInfromationBlockAllWpmParser; import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemInformationBlockAllWpmParser;
import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemParameterBlockAllWpmParser; import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemParameterBlockAllWpmParser;
import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemStateBlockParserAllWpm; import org.openhab.binding.modbus.stiebeleltron.internal.parser.SystemStateBlockParserAllWpm;
import org.openhab.core.io.transport.modbus.AsyncModbusFailure; import org.openhab.core.io.transport.modbus.AsyncModbusFailure;
@ -139,7 +139,7 @@ public class StiebelEltronHandlerWpm3i extends BaseThingHandler {
/** /**
* Parser used to convert incoming raw messages into system blocks * Parser used to convert incoming raw messages into system blocks
*/ */
private final SystemInfromationBlockAllWpmParser systemInformationBlockParser = new SystemInfromationBlockAllWpmParser(); private final SystemInformationBlockAllWpmParser systemInformationBlockParser = new SystemInformationBlockAllWpmParser();
/** /**
* Parser used to convert incoming raw messages into system parameter blocks * Parser used to convert incoming raw messages into system parameter blocks
*/ */

View File

@ -23,7 +23,7 @@ import org.openhab.core.io.transport.modbus.ModbusRegisterArray;
* *
*/ */
@NonNullByDefault @NonNullByDefault
public class SystemInfromationBlockAllWpmParser extends AbstractBaseParser { public class SystemInformationBlockAllWpmParser extends AbstractBaseParser {
public SystemInformationBlockAllWpm parse(ModbusRegisterArray raw) { public SystemInformationBlockAllWpm parse(ModbusRegisterArray raw) {
SystemInformationBlockAllWpm block = new SystemInformationBlockAllWpm(); SystemInformationBlockAllWpm block = new SystemInformationBlockAllWpm();

View File

@ -24,7 +24,7 @@ import org.openhab.core.io.transport.modbus.ModbusRegisterArray;
* *
*/ */
@NonNullByDefault @NonNullByDefault
public class SystemInfromationBlockParser extends AbstractBaseParser { public class SystemInformationBlockParser extends AbstractBaseParser {
public SystemInformationBlock parse(ModbusRegisterArray raw) { public SystemInformationBlock parse(ModbusRegisterArray raw) {
SystemInformationBlock block = new SystemInformationBlock(); SystemInformationBlock block = new SystemInformationBlock();