mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2025-01-08 08:55:51 +01:00
0ef738067d
Currently we get the heart rate when synchronizing activity data (i.e. not live) and we write it to the activity database so that we can show a nice graph. The value is currently always 0 though, because we can't enable recording hr, yet.
16 lines
645 B
Java
16 lines
645 B
Java
package nodomain.freeyourgadget.gadgetbridge.database;
|
|
|
|
public class DBConstants {
|
|
public static final String DATABASE_NAME = "ActivityDatabase";
|
|
|
|
public static final String TABLE_GBACTIVITYSAMPLES = "GBActivitySamples";
|
|
public static final String TABLE_STEPS_PER_DAY = "StepsPerDay";
|
|
|
|
public static final String KEY_TIMESTAMP = "timestamp";
|
|
public static final String KEY_PROVIDER = "provider";
|
|
public static final String KEY_INTENSITY = "intensity";
|
|
public static final String KEY_STEPS = "steps";
|
|
public static final String KEY_CUSTOM_SHORT = "customShort";
|
|
public static final String KEY_TYPE = "type";
|
|
}
|