21 lines
510 B
Java
21 lines
510 B
Java
package com.eveningoutpost.dexdrip.G5Model;
|
|
|
|
import com.eveningoutpost.dexdrip.Models.JoH;
|
|
import com.eveningoutpost.dexdrip.Models.UserError;
|
|
|
|
/**
|
|
* Created by jamorham on 25/11/2016.
|
|
*/
|
|
|
|
public class BatteryInfoTxMessage extends BaseMessage {
|
|
|
|
private final static String TAG = G5CollectionService.TAG; // meh
|
|
static final byte opcode = 0x22;
|
|
|
|
public BatteryInfoTxMessage() {
|
|
init(opcode, 3);
|
|
UserError.Log.e(TAG, "BatteryInfoTx dbg: " + JoH.bytesToHex(byteSequence));
|
|
}
|
|
}
|
|
|