Package org.openhab.binding.plcbus.internal.protocol

Examples of org.openhab.binding.plcbus.internal.protocol.PLCUnit


  private void parse(String config) {
    String[] parts = config.split(" ");

    if (parts.length >= 2) {
      unit = new PLCUnit(parts[0], parts[1]);

      if (parts.length >= 3) {
        seconds = Integer.parseInt(parts[2]);
      }
    }
View Full Code Here

TOP

Related Classes of org.openhab.binding.plcbus.internal.protocol.PLCUnit

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.