Package org.openhab.binding.maxcube.internal.message

Examples of org.openhab.binding.maxcube.internal.message.H_Message


   * @return the correct message for the given raw data
   */
  private Message processRawMessage(String raw) {

    if (raw.startsWith("H:")) {
      return new H_Message(raw);
    } else if (raw.startsWith("M:")) {
      return new M_Message(raw);
    } else if (raw.startsWith("C:")) {
      return new C_Message(raw);
    } else if (raw.startsWith("L:")) {
View Full Code Here

TOP

Related Classes of org.openhab.binding.maxcube.internal.message.H_Message

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.