Package org.openhab.binding.comfoair.datatypes

Examples of org.openhab.binding.comfoair.datatypes.ComfoAirDataType.convertToState()


    List<ComfoAirCommandType> commandTypes =
      ComfoAirCommandType.getCommandTypesByReplyCmd(command.getReplyCmd());

    for (ComfoAirCommandType commandType : commandTypes) {
      ComfoAirDataType dataType = commandType.getDataType();
      State value = dataType.convertToState(response, commandType);

      if (value == null) {
        logger.error("Unexpected value for DATA: " + ComfoAirConnector.dumpData(response));
      } else {
        for (ComfoAirBindingProvider provider : providers) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.