* Gets a SerialMessage with the ManufacturerSpecific GET command
* @return the serial message
*/
public SerialMessage getManufacturerSpecificMessage() {
logger.debug("NODE {}: Creating new message for application command MANUFACTURER_SPECIFIC_GET", this.getNode().getNodeId());
SerialMessage result = new SerialMessage(this.getNode().getNodeId(), SerialMessageClass.SendData, SerialMessageType.Request, SerialMessageClass.ApplicationCommandHandler, SerialMessagePriority.Get);
byte[] newPayload = { (byte) this.getNode().getNodeId(),
2,
(byte) getCommandClass().getKey(),
(byte) MANUFACTURER_SPECIFIC_GET };
result.setMessagePayload(newPayload);
return result;
}