Initial project commit

This commit is contained in:
2020-07-18 21:44:27 -04:00
parent 8a1141b373
commit fea891a268
127 changed files with 20838 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package com.eveningoutpost.dexdrip.Models;
// class from LibreAlarm
public class PredictionData extends GlucoseData {
public enum Result {
OK,
ERROR_NO_NFC,
ERROR_NFC_READ
}
public double trend = -1;
public double confidence = -1;
public Result errorCode;
public int attempt;
public PredictionData() {}
}