Package org.openhab.binding.fht.FHTBindingConfig

Examples of org.openhab.binding.fht.FHTBindingConfig.Datapoint


    super.processBindingConfiguration(context, item, bindingConfig);
    String[] configParts = bindingConfig.split(";");

    String housecode = null;
    String address = null;
    Datapoint datapoint = null;
    for (String s : configParts) {
      String[] entryParts = s.split("=");
      if ("housecode".equals(entryParts[0])) {
        housecode = entryParts[1];
      } else if ("address".equals(entryParts[0])) {
View Full Code Here

TOP

Related Classes of org.openhab.binding.fht.FHTBindingConfig.Datapoint

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.