File tree Expand file tree Collapse file tree 4 files changed +7
-8
lines changed
app/src/main/java/com/eveningoutpost/dexdrip Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -95,8 +95,8 @@ public boolean voltageAWarning() {
9595 }
9696
9797 public boolean voltageBWarning () {
98- if (shortTxId ()) { // G7 only
99- return voltageB () < (G5BaseService .LOW_BATTERY_WARNING_LEVEL - 25 );
98+ if (shortTxId ()) {
99+ return voltageB () < (G5BaseService .LOW_BATTERY_WARNING_LEVEL - 60 );
100100 }
101101 return voltageB () < (G5BaseService .LOW_BATTERY_WARNING_LEVEL - 10 );
102102 };
Original file line number Diff line number Diff line change @@ -101,7 +101,8 @@ public class UiBasedCollector extends NotificationListenerService {
101101 coOptedPackages .add ("com.medtronic.diabetes.simplera.eu" );
102102 coOptedPackages .add ("com.senseonics.gen12androidapp" );
103103 coOptedPackages .add ("com.senseonics.androidapp" );
104- coOptedPackages .add ("com.microtech.aidexx.mgdl" ); // Experiment
104+ coOptedPackages .add ("com.microtech.aidexx.mgdl" );
105+ coOptedPackages .add ("com.ottai.seas" ); // Experiment
105106
106107 coOptedPackagesAll .add ("com.dexcom.dexcomone" );
107108 coOptedPackagesAll .add ("com.dexcom.d1plus" );
@@ -110,7 +111,8 @@ public class UiBasedCollector extends NotificationListenerService {
110111 coOptedPackagesAll .add ("com.medtronic.diabetes.simplera.eu" );
111112 coOptedPackagesAll .add ("com.senseonics.gen12androidapp" );
112113 coOptedPackagesAll .add ("com.senseonics.androidapp" );
113- coOptedPackagesAll .add ("com.microtech.aidexx.mgdl" ); // Experiment
114+ coOptedPackagesAll .add ("com.microtech.aidexx.mgdl" );
115+ coOptedPackagesAll .add ("com.ottai.seas" ); // Experiment
114116
115117 companionAppIoBPackages .add ("com.insulet.myblue.pdm" );
116118
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ public void closeActivity(View myview) {
6161
6262 public void saveLogs (View myview ) {
6363 if (saveLogsToStorage (log_data )) {
64- UserError .Log .e (TAG , "Saved log file to /Downloads /xDrip-export/xDrip-log.txt" );
64+ UserError .Log .e (TAG , "Saved log file to /Download /xDrip-export/xDrip-log.txt" );
6565 } else {
6666 UserError .Log .e (TAG , "Could not write log file" );
6767 }
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ public QrCodeFromFile setDesiredBarcodeFormats(Collection<String> desiredBarcode
3434 }
3535
3636 public final void initiateFileScan () {
37- UserError .Log .e (TAG , "Navid_ initiate scan" );
3837
3938 // TODO Replace startActivityForResult with Androidx Activity Result APIs
4039 this .activity .startActivityForResult (this .createFileScanIntent (), Constants .ZXING_FILE_REQ_CODE );
@@ -53,12 +52,10 @@ private static List<String> list(String... values) {
5352 }
5453
5554 public void scanFile () { // Copied (and slightly modified) from AndroidBarcode.scan()
56- UserError .Log .e (TAG , "Navid_ scanFile " );
5755 actuallyStartScanFile ();
5856 }
5957
6058 private void actuallyStartScanFile () {
61- UserError .Log .e (TAG , "Navid_ actuallyScan " );
6259 new QrCodeFromFile (activity )
6360 .setDesiredBarcodeFormats (list ("QR_CODE" , "CODE_128" ))
6461 .initiateFileScan ();
You can’t perform that action at this time.
0 commit comments