2016-06-07 21:48:17 +02:00
|
|
|
package info.nightscout.androidaps;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by mike on 07.06.2016.
|
|
|
|
*/
|
|
|
|
public class Constants {
|
|
|
|
public static final String MGDL = "mg/dl"; // This is Nightscout representation
|
|
|
|
public static final String MMOL = "mmol";
|
|
|
|
|
2016-06-24 17:16:17 +02:00
|
|
|
public static final double MMOLL_TO_MGDL = 18; // 18.0182;
|
2016-06-07 21:48:17 +02:00
|
|
|
public static final double MGDL_TO_MMOLL = 1 / MMOLL_TO_MGDL;
|
|
|
|
|
2016-06-24 17:16:17 +02:00
|
|
|
public static final double basalAbsoluteOnlyForCheckLimit = 10101010d;
|
|
|
|
public static final Integer basalPercentOnlyForCheckLimit = 10101010;
|
|
|
|
|
2016-06-21 23:24:54 +02:00
|
|
|
public static final int hoursToKeepInDatabase = 24;
|
2016-06-07 21:48:17 +02:00
|
|
|
}
|