2016-06-14 23:45:55 +02:00
|
|
|
package info.nightscout.androidaps.interfaces;
|
2016-06-10 18:50:46 +02:00
|
|
|
|
2019-02-28 23:16:50 +01:00
|
|
|
import info.nightscout.androidaps.plugins.aps.loop.APSResult;
|
2016-06-14 23:45:55 +02:00
|
|
|
|
2016-06-10 18:50:46 +02:00
|
|
|
/**
|
|
|
|
* Created by mike on 10.06.2016.
|
|
|
|
*/
|
2016-06-14 23:45:55 +02:00
|
|
|
public interface APSInterface {
|
2016-06-10 18:50:46 +02:00
|
|
|
public APSResult getLastAPSResult();
|
2018-08-17 15:11:43 +02:00
|
|
|
public long getLastAPSRun();
|
2016-06-10 18:50:46 +02:00
|
|
|
|
2018-04-25 12:51:27 +02:00
|
|
|
public void invoke(String initiator, boolean tempBasalFallback);
|
2016-06-10 18:50:46 +02:00
|
|
|
}
|