Package org.openhab.binding.nibeheatpump.protocol.NibeHeatPumpDataParser

Examples of org.openhab.binding.nibeheatpump.protocol.NibeHeatPumpDataParser.VariableInformation


            while (keys.hasMoreElements()) {

              int key = keys.nextElement();
              double value = regValues.get(key);

              VariableInformation variableInfo = NibeHeatPumpDataParser.VARIABLE_INFO_F1145_F1245
                  .get(key);

              if (variableInfo == null) {
                logger.debug("Unknown variable {}", key);
              } else {
View Full Code Here

TOP

Related Classes of org.openhab.binding.nibeheatpump.protocol.NibeHeatPumpDataParser.VariableInformation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.