mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 02:21:14 +01:00
15 lines
484 B
Java
15 lines
484 B
Java
package nodomain.freeyourgadget.gadgetbridge.activities;
|
|
|
|
public class HeartRateUtils {
|
|
public static final int MAX_HEART_RATE_VALUE = 250;
|
|
public static final int MIN_HEART_RATE_VALUE = 0;
|
|
/**
|
|
* The maxiumum gap between two hr measurements in which
|
|
* we interpolate between the measurements. Otherwise, two
|
|
* distinct measurements will be shown.
|
|
*
|
|
* Value is in minutes
|
|
*/
|
|
public static final int MAX_HR_MEASUREMENTS_GAP_MINUTES = 10;
|
|
}
|