switch constants for deep sleep and light sleep to match native miband data

This commit is contained in:
Andreas Shimokawa 2015-06-11 23:00:59 +02:00
parent 0fa87b9eed
commit 9051e10aad
1 changed files with 2 additions and 2 deletions

View File

@ -4,8 +4,8 @@ public class GBActivitySample {
public static final byte PROVIDER_MIBAND = 0; public static final byte PROVIDER_MIBAND = 0;
public static final byte PROVIDER_PEBBLE_MORPHEUZ = 1; public static final byte PROVIDER_PEBBLE_MORPHEUZ = 1;
public static final byte TYPE_DEEP_SLEEP = 5; public static final byte TYPE_DEEP_SLEEP = 4;
public static final byte TYPE_LIGHT_SLEEP = 4; public static final byte TYPE_LIGHT_SLEEP = 5;
public static final byte TYPE_UNKNOWN = -1; public static final byte TYPE_UNKNOWN = -1;
// add more here // add more here