2015-08-03 23:09:49 +02:00
|
|
|
package nodomain.freeyourgadget.gadgetbridge.devices;
|
2015-07-27 23:49:53 +02:00
|
|
|
|
|
|
|
public interface SampleProvider {
|
2016-02-29 20:54:39 +01:00
|
|
|
int PROVIDER_MIBAND = 0;
|
|
|
|
int PROVIDER_PEBBLE_MORPHEUZ = 1;
|
|
|
|
int PROVIDER_PEBBLE_GADGETBRIDGE = 2;
|
|
|
|
int PROVIDER_PEBBLE_MISFIT = 3;
|
|
|
|
int PROVIDER_PEBBLE_HEALTH = 4;
|
2015-10-21 16:11:16 +02:00
|
|
|
|
2016-02-29 20:54:39 +01:00
|
|
|
int PROVIDER_UNKNOWN = 100;
|
2015-07-27 23:49:53 +02:00
|
|
|
|
2016-02-29 20:54:39 +01:00
|
|
|
int normalizeType(int rawType);
|
2015-07-27 23:49:53 +02:00
|
|
|
|
2016-02-29 20:54:39 +01:00
|
|
|
int toRawActivityKind(int activityKind);
|
2015-07-27 23:49:53 +02:00
|
|
|
|
2016-02-29 20:54:39 +01:00
|
|
|
float normalizeIntensity(int rawIntensity);
|
2015-07-27 23:49:53 +02:00
|
|
|
|
2016-02-29 20:54:39 +01:00
|
|
|
int getID();
|
2015-07-27 23:49:53 +02:00
|
|
|
}
|