DanaR as part of profile name
This commit is contained in:
parent
5f4a8330e1
commit
4b27c9212a
1 changed files with 6 additions and 4 deletions
|
@ -22,6 +22,8 @@ public class DanaRPump {
|
||||||
public static final int UNITS_MGDL = 0;
|
public static final int UNITS_MGDL = 0;
|
||||||
public static final int UNITS_MMOL = 1;
|
public static final int UNITS_MMOL = 1;
|
||||||
|
|
||||||
|
public static final String PROFILE_PREFIX = "DanaR-";
|
||||||
|
|
||||||
public Date lastConnection = new Date(0);
|
public Date lastConnection = new Date(0);
|
||||||
public Date lastSettingsRead = new Date(0);
|
public Date lastSettingsRead = new Date(0);
|
||||||
|
|
||||||
|
@ -106,7 +108,7 @@ public class DanaRPump {
|
||||||
double car = SafeParse.stringToDouble(SP.getString("danarprofile_car", "20"));
|
double car = SafeParse.stringToDouble(SP.getString("danarprofile_car", "20"));
|
||||||
|
|
||||||
try {
|
try {
|
||||||
json.put("defaultProfile", "" + (activeProfile + 1));
|
json.put("defaultProfile", PROFILE_PREFIX + (activeProfile + 1));
|
||||||
json.put("store", store);
|
json.put("store", store);
|
||||||
profile.put("dia", dia);
|
profile.put("dia", dia);
|
||||||
|
|
||||||
|
@ -146,13 +148,13 @@ public class DanaRPump {
|
||||||
profile.put("target_low", new JSONArray().put(new JSONObject().put("time", "00:00").put("timeAsSeconds", 0).put("value", currentTarget)));
|
profile.put("target_low", new JSONArray().put(new JSONObject().put("time", "00:00").put("timeAsSeconds", 0).put("value", currentTarget)));
|
||||||
profile.put("target_high", new JSONArray().put(new JSONObject().put("time", "00:00").put("timeAsSeconds", 0).put("value", currentTarget)));
|
profile.put("target_high", new JSONArray().put(new JSONObject().put("time", "00:00").put("timeAsSeconds", 0).put("value", currentTarget)));
|
||||||
profile.put("units", units == UNITS_MGDL ? Constants.MGDL : Constants.MMOL);
|
profile.put("units", units == UNITS_MGDL ? Constants.MGDL : Constants.MMOL);
|
||||||
store.put("" + (activeProfile + 1), profile);
|
store.put(PROFILE_PREFIX + (activeProfile + 1), profile);
|
||||||
} catch (JSONException e) {
|
} catch (JSONException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return new NSProfile(json, "" + (activeProfile + 1));
|
return new NSProfile(json, PROFILE_PREFIX + (activeProfile + 1));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue