Package org.openhab.binding.maxcul.internal.messages

Examples of org.openhab.binding.maxcul.internal.messages.SetGroupIdMsg


      break;
    case THERMOSTAT_STATE:
      new ThermostatStateMsg(data).printMessage();
      break;
    case SET_GROUP_ID:
      new SetGroupIdMsg(data).printMessage();
      break;
    case WAKEUP:
      new WakeupMsg(data).printMessage();
      break;
    case WALL_THERMOSTAT_STATE:
View Full Code Here


   * @param msgSeq
   *            Message sequence to associate
   */
  public void sendSetGroupId(String devAddr, byte group_id,
      MessageSequencer msgSeq) {
    SetGroupIdMsg msg = new SetGroupIdMsg(getMessageCount(), (byte) 0x0,
        this.srcAddr, devAddr, group_id);
    msg.setMessageSequencer(msgSeq);
    sendMessage(msg);
  }
View Full Code Here

TOP

Related Classes of org.openhab.binding.maxcul.internal.messages.SetGroupIdMsg

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.