1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-30 00:36:26 +02:00

uncomment some constants

This commit is contained in:
cpfeiffer 2016-07-14 20:37:20 +02:00
parent 367091587f
commit ebda3e1535

View File

@ -209,17 +209,15 @@ public class MiBandService {
*/
/* TEST: unkown (maybe sent to UUID_CHARACTERISTIC_TEST characteristic?
// TEST_*: sent to UUID_CHARACTERISTIC_TEST characteristic
public static final TEST_DISCONNECTED_REMINDER = 0x5t
public static final byte TEST_DISCONNECTED_REMINDER = 0x5;
public static final TEST_NOTIFICATION = 0x3t
public static final byte TEST_NOTIFICATION = 0x3;
public static final TEST_REMOTE_DISCONNECT = 0x1t
public static final byte TEST_REMOTE_DISCONNECT = 0x1;
public static final TEST_SELFTEST = 0x2t
*/
public static final byte TEST_SELFTEST = 0x2;
private static final Map<UUID, String> MIBAND_DEBUG;