align failoverToMinAbsorbtionRate to cobtime

This commit is contained in:
AdrianLxM 2018-04-26 03:13:17 +02:00
parent 0962f5c5e5
commit c045a0a41e
2 changed files with 7 additions and 1 deletions

View file

@ -28,6 +28,10 @@ import info.nightscout.utils.SP;
public class AutosensData implements DataPointWithLabelInterface {
private static Logger log = LoggerFactory.getLogger(AutosensData.class);
public void setChartTime(long chartTime) {
this.chartTime = chartTime;
}
static class CarbsInPast {
long time = 0L;
double carbs = 0d;
@ -52,6 +56,7 @@ public class AutosensData implements DataPointWithLabelInterface {
}
public long time = 0L;
long chartTime;
public String pastSensitivity = "";
public double deviation = 0d;
boolean nonCarbsDeviation = false;
@ -121,7 +126,7 @@ public class AutosensData implements DataPointWithLabelInterface {
@Override
public double getX() {
return time;
return chartTime;
}
@Override

View file

@ -385,6 +385,7 @@ public class GraphData {
}
if (autosensData.failoverToMinAbsorbtionRate) {
autosensData.setScale(cobScale);
autosensData.setChartTime(time);
minFailoverActiveList.add(autosensData);
}
}