22 lines
538 B
Java
22 lines
538 B
Java
package com.eveningoutpost.dexdrip.G5Model;
|
|
|
|
import com.eveningoutpost.dexdrip.Models.JoH;
|
|
|
|
import java.nio.ByteBuffer;
|
|
|
|
/**
|
|
* Created by joeginley on 3/16/16.
|
|
*/
|
|
public class DisconnectTxMessage extends BaseMessage {
|
|
byte opcode = 0x09;
|
|
private final static String TAG = G5CollectionService.TAG; // meh
|
|
public DisconnectTxMessage() {
|
|
data = ByteBuffer.allocate(1);
|
|
data.put(opcode);
|
|
|
|
byteSequence = data.array();
|
|
UserError.Log.d(TAG,"DisconnectTX: "+ JoH.bytesToHex(byteSequence));
|
|
}
|
|
}
|
|
|