Initial project commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package com.eveningoutpost.dexdrip.G5Model;
|
||||
|
||||
import java.nio.ByteBuffer;
|
||||
|
||||
/**
|
||||
* Created by joeginley on 3/16/16.
|
||||
*/
|
||||
public class UnbondRequestTxMessage extends TransmitterMessage {
|
||||
byte opcode = 0x6;
|
||||
|
||||
public UnbondRequestTxMessage() {
|
||||
data = ByteBuffer.allocate(1);
|
||||
data.put(opcode);
|
||||
|
||||
byteSequence = data.array();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user