Check in files forgotten in previous commit
This commit is contained in:
parent
dc7ed96657
commit
2fdbbd9057
|
@ -2,7 +2,9 @@ package info.nightscout.androidaps.queue.commands
|
|||
|
||||
import dagger.android.HasAndroidInjector
|
||||
import info.nightscout.androidaps.interfaces.ActivePluginProvider
|
||||
import info.nightscout.androidaps.interfaces.ProfileFunction
|
||||
import info.nightscout.androidaps.plugins.pump.insight.LocalInsightPlugin
|
||||
import info.nightscout.androidaps.plugins.pump.omnipod.OmnipodPumpPlugin
|
||||
import info.nightscout.androidaps.queue.Callback
|
||||
import javax.inject.Inject
|
||||
|
||||
|
@ -12,12 +14,19 @@ class CommandStartPump(
|
|||
) : Command(injector, CommandType.START_PUMP, callback) {
|
||||
|
||||
@Inject lateinit var activePlugin: ActivePluginProvider
|
||||
@Inject lateinit var profileFunction: ProfileFunction
|
||||
|
||||
override fun execute() {
|
||||
val pump = activePlugin.activePump
|
||||
if (pump is LocalInsightPlugin) {
|
||||
val result = pump.startPump()
|
||||
callback?.result(result)?.run()
|
||||
} else if (pump is OmnipodPumpPlugin) {
|
||||
// When using CommandQueue.setProfile, it refuses to set the profile is the same as the current profile
|
||||
// However we need to set the current profile to resume delivery in case the Pod is suspended
|
||||
if (profileFunction.getProfile() != null) {
|
||||
pump.setNewBasalProfile(profileFunction.getProfile())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -72,6 +72,7 @@ public class Notification {
|
|||
public static final int OMNIPOD_POD_NOT_ATTACHED = 59;
|
||||
public static final int CARBS_REQUIRED = 60;
|
||||
public static final int IMPORTANCE_HIGH = 2;
|
||||
public static final int OMNIPOD_POD_SUSPENDED = 61;
|
||||
|
||||
public static final String CATEGORY_ALARM = "alarm";
|
||||
|
||||
|
|
Loading…
Reference in a new issue