Initial project commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package com.eveningoutpost.dexdrip.G5Model;
|
||||
|
||||
import java.nio.ByteBuffer;
|
||||
import java.nio.ByteOrder;
|
||||
|
||||
// created by jamorham
|
||||
|
||||
|
||||
public class EGlucoseTxMessage extends BaseMessage {
|
||||
|
||||
final byte opcode = 0x4e;
|
||||
|
||||
public EGlucoseTxMessage() {
|
||||
data = ByteBuffer.allocate(3).order(ByteOrder.LITTLE_ENDIAN);
|
||||
data.put(opcode);
|
||||
appendCRC();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user