2015-05-30 17:28:03 +02:00
|
|
|
package nodomain.freeyourgadget.gadgetbridge;
|
|
|
|
|
|
|
|
public class GBActivitySample {
|
2015-05-30 21:52:29 +02:00
|
|
|
public static final byte PROVIDER_MIBAND = 0;
|
|
|
|
public static final byte PROVIDER_PEBBLE_MORPHEUZ = 1;
|
|
|
|
|
2015-06-11 23:00:59 +02:00
|
|
|
public static final byte TYPE_DEEP_SLEEP = 4;
|
|
|
|
public static final byte TYPE_LIGHT_SLEEP = 5;
|
2015-06-05 19:32:09 +02:00
|
|
|
public static final byte TYPE_UNKNOWN = -1;
|
2015-05-30 21:52:29 +02:00
|
|
|
// add more here
|
|
|
|
|
2015-05-30 17:28:03 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|