Files
2020-07-18 21:44:27 -04:00

21 lines
447 B
Java

package com.eveningoutpost.dexdrip.G5Model;
import com.eveningoutpost.dexdrip.Models.JoH;
/**
* Created by jamorham on 25/11/2016.
*/
public class GlucoseTxMessage extends BaseMessage {
private final static String TAG = G5CollectionService.TAG; // meh
static final byte opcode = 0x30;
public GlucoseTxMessage() {
init(opcode, 3);
UserError.Log.d(TAG, "GlucoseTx dbg: " + JoH.bytesToHex(byteSequence));
}
}