2017-06-24 11:04:09 +02:00
|
|
|
package info.nightscout.androidaps.interfaces;
|
|
|
|
|
|
|
|
import info.nightscout.androidaps.plugins.IobCobCalculator.AutosensResult;
|
2018-07-24 00:46:08 +02:00
|
|
|
import info.nightscout.androidaps.plugins.IobCobCalculator.IobCobCalculatorPlugin;
|
2017-06-24 11:04:09 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by mike on 24.06.2017.
|
|
|
|
*/
|
|
|
|
|
|
|
|
public interface SensitivityInterface {
|
2018-06-24 15:43:25 +02:00
|
|
|
|
2018-06-23 14:05:12 +02:00
|
|
|
double MIN_HOURS = 1;
|
|
|
|
double MIN_HOURS_FULL_AUTOSENS = 4;
|
|
|
|
|
2018-07-24 00:46:08 +02:00
|
|
|
AutosensResult detectSensitivity(IobCobCalculatorPlugin plugin, long fromTime, long toTime);
|
2018-06-24 15:43:25 +02:00
|
|
|
|
2017-06-24 11:04:09 +02:00
|
|
|
}
|