mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-10 15:11:59 +01:00
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:
parent
1242c1ae3e
commit
7282b597e7
@ -44,9 +44,12 @@ public class SystemInformationBlockAllWpm extends SystemInformationBlock {
|
||||
public short temperatureAreaCooling;
|
||||
public short temperatureAreaCoolingSetPoint;
|
||||
|
||||
// The following three values are only available for WPM3
|
||||
public short temperatureCollectorSolar;
|
||||
public short temperatureCylinderSolar;
|
||||
public int runtimeSolar;
|
||||
|
||||
// The following three values are only available for WPMsystem and WPM3
|
||||
public short temperatureExtHeatSource;
|
||||
public short temperatureExtHeatSourceSetPoint;
|
||||
public int runtimeExtHeatSource;
|
||||
@ -57,6 +60,7 @@ public class SystemInformationBlockAllWpm extends SystemInformationBlock {
|
||||
public short temperatureSourceMin;
|
||||
public short pressureSource;
|
||||
|
||||
// The following three values are only available for WPM3i
|
||||
public short temperatureHotgas;
|
||||
public short pressureHigh;
|
||||
public short pressureLow;
|
||||
|
@ -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.SystemStateBlock;
|
||||
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.SystemStateBlockParser;
|
||||
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
|
||||
*/
|
||||
private final SystemInfromationBlockParser systemInformationBlockParser = new SystemInfromationBlockParser();
|
||||
private final SystemInformationBlockParser systemInformationBlockParser = new SystemInformationBlockParser();
|
||||
/**
|
||||
* Parser used to convert incoming raw messages into system state blocks
|
||||
*/
|
||||
|
@ -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.SystemStateBlockAllWpm;
|
||||
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.SystemStateBlockParserAllWpm;
|
||||
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
|
||||
*/
|
||||
private final SystemInfromationBlockAllWpmParser systemInformationBlockParser = new SystemInfromationBlockAllWpmParser();
|
||||
private final SystemInformationBlockAllWpmParser systemInformationBlockParser = new SystemInformationBlockAllWpmParser();
|
||||
/**
|
||||
* Parser used to convert incoming raw messages into system parameter blocks
|
||||
*/
|
||||
|
@ -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.SystemStateBlockAllWpm;
|
||||
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.SystemStateBlockParserAllWpm;
|
||||
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
|
||||
*/
|
||||
private final SystemInfromationBlockAllWpmParser systemInformationBlockParser = new SystemInfromationBlockAllWpmParser();
|
||||
private final SystemInformationBlockAllWpmParser systemInformationBlockParser = new SystemInformationBlockAllWpmParser();
|
||||
/**
|
||||
* Parser used to convert incoming raw messages into system parameter blocks
|
||||
*/
|
||||
|
@ -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.parser.EnergyBlockParser;
|
||||
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.SystemStateBlockParserAllWpm;
|
||||
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
|
||||
*/
|
||||
private final SystemInfromationBlockAllWpmParser systemInformationBlockParser = new SystemInfromationBlockAllWpmParser();
|
||||
private final SystemInformationBlockAllWpmParser systemInformationBlockParser = new SystemInformationBlockAllWpmParser();
|
||||
/**
|
||||
* Parser used to convert incoming raw messages into system parameter blocks
|
||||
*/
|
||||
|
@ -23,7 +23,7 @@ import org.openhab.core.io.transport.modbus.ModbusRegisterArray;
|
||||
*
|
||||
*/
|
||||
@NonNullByDefault
|
||||
public class SystemInfromationBlockAllWpmParser extends AbstractBaseParser {
|
||||
public class SystemInformationBlockAllWpmParser extends AbstractBaseParser {
|
||||
|
||||
public SystemInformationBlockAllWpm parse(ModbusRegisterArray raw) {
|
||||
SystemInformationBlockAllWpm block = new SystemInformationBlockAllWpm();
|
||||
|
@ -24,7 +24,7 @@ import org.openhab.core.io.transport.modbus.ModbusRegisterArray;
|
||||
*
|
||||
*/
|
||||
@NonNullByDefault
|
||||
public class SystemInfromationBlockParser extends AbstractBaseParser {
|
||||
public class SystemInformationBlockParser extends AbstractBaseParser {
|
||||
|
||||
public SystemInformationBlock parse(ModbusRegisterArray raw) {
|
||||
SystemInformationBlock block = new SystemInformationBlock();
|
||||
|
Loading…
Reference in New Issue
Block a user