mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 02:21:14 +01:00
e562fa9870
Use dashed limit lines, still not perfect.
57 lines
1.5 KiB
Java
57 lines
1.5 KiB
Java
package nodomain.freeyourgadget.gadgetbridge;
|
|
|
|
public class GBActivitySample {
|
|
public static final byte PROVIDER_MIBAND = 0;
|
|
public static final byte PROVIDER_PEBBLE_MORPHEUZ = 1;
|
|
|
|
// public static final byte TYPE_CHARGING = 6;
|
|
// public static final byte TYPE_NONWEAR = 3;
|
|
// public static final byte TYPE_NREM = 5; // DEEP SLEEP
|
|
// public static final byte TYPE_ONBED = 7;
|
|
// public static final byte TYPE_REM = 4; // LIGHT SLEEP
|
|
// public static final byte TYPE_RUNNING = 2;
|
|
// public static final byte TYPE_SLIENT = 0;
|
|
// public static final byte TYPE_USER = 100;
|
|
// public static final byte TYPE_WALKING = 1;
|
|
|
|
public static final byte TYPE_DEEP_SLEEP = 5;
|
|
public static final byte TYPE_LIGHT_SLEEP = 4;
|
|
public static final byte TYPE_UNKNOWN = -1;
|
|
// add more here
|
|
|
|
private final int timestamp;
|
|
private final byte provider;
|
|
private final short intensity;
|
|
private final byte steps;
|
|
private final byte type;
|
|
|
|
public GBActivitySample(int timestamp, byte provider, short intensity, byte steps, byte type) {
|
|
this.timestamp = timestamp;
|
|
this.provider = provider;
|
|
this.intensity = intensity;
|
|
this.steps = steps;
|
|
this.type = type;
|
|
}
|
|
|
|
public int getTimestamp() {
|
|
return timestamp;
|
|
}
|
|
|
|
public byte getProvider() {
|
|
return provider;
|
|
}
|
|
|
|
public short getIntensity() {
|
|
return intensity;
|
|
}
|
|
|
|
public byte getSteps() {
|
|
return steps;
|
|
}
|
|
|
|
public byte getType() {
|
|
return type;
|
|
}
|
|
|
|
}
|