mirror of
https://github.com/oliexdev/openScale.git
synced 2025-08-30 03:30:30 +02:00
Minor code cleanups
This commit is contained in:
@@ -225,7 +225,7 @@ public class OpenScale {
|
||||
|
||||
String infoText = String.format(context.getString(R.string.info_new_data_added),
|
||||
scaleMeasurement.getConvertedWeight(scaleUser.getScaleUnit()),
|
||||
scaleUser.UNIT_STRING[scaleUser.getScaleUnit()],
|
||||
ScaleUser.UNIT_STRING[scaleUser.getScaleUnit()],
|
||||
dateFormat.format(dateTime) + " " + timeFormat.format(dateTime),
|
||||
scaleUser.getUserName());
|
||||
Toast.makeText(context, infoText, Toast.LENGTH_LONG).show();
|
||||
|
@@ -36,7 +36,8 @@ import java.util.UUID;
|
||||
public abstract class BluetoothCommunication {
|
||||
public enum BT_STATUS_CODE {BT_RETRIEVE_SCALE_DATA, BT_INIT_PROCESS, BT_CONNECTION_ESTABLISHED,
|
||||
BT_CONNECTION_LOST, BT_NO_DEVICE_FOUND, BT_UNEXPECTED_ERROR, BT_SCALE_MESSAGE
|
||||
};
|
||||
}
|
||||
|
||||
public enum BT_MACHINE_STATE {BT_INIT_STATE, BT_CMD_STATE, BT_CLEANUP_STATE}
|
||||
public enum BT_DEVICE_ID {CUSTOM_OPENSCALE, MI_SCALE_V1, MI_SCALE_V2, SANITAS_SBF70, MEDISANA_BS444, DIGOO_DGS038H, EXCELVANT_CF369BLE, YUNMAI_MINI, YUNMAI_SE, MGB, EXINGTECH_Y1, BEURER_BF700_800}
|
||||
|
||||
@@ -244,7 +245,7 @@ public abstract class BluetoothCommunication {
|
||||
* @param gattCharacteristic the Bluetooth Gatt characteristic
|
||||
* @param status the status code
|
||||
*/
|
||||
protected void onBluetoothDataRead(BluetoothGatt bluetoothGatt, BluetoothGattCharacteristic gattCharacteristic, int status) {};
|
||||
protected void onBluetoothDataRead(BluetoothGatt bluetoothGatt, BluetoothGattCharacteristic gattCharacteristic, int status) {}
|
||||
|
||||
/**
|
||||
* Method is triggered if a Bluetooth data from a device is notified or indicated.
|
||||
@@ -252,7 +253,7 @@ public abstract class BluetoothCommunication {
|
||||
* @param bluetoothGatt the Bluetooth Gatt
|
||||
* @param gattCharacteristic the Bluetooth characteristic
|
||||
*/
|
||||
protected void onBluetoothDataChange(BluetoothGatt bluetoothGatt, BluetoothGattCharacteristic gattCharacteristic) {};
|
||||
protected void onBluetoothDataChange(BluetoothGatt bluetoothGatt, BluetoothGattCharacteristic gattCharacteristic) {}
|
||||
|
||||
/**
|
||||
* Set the Bluetooth machine state to a specific state.
|
||||
@@ -579,6 +580,6 @@ public abstract class BluetoothCommunication {
|
||||
BluetoothGattCharacteristic characteristic) {
|
||||
onBluetoothDataChange(gatt, characteristic);
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -19,7 +19,7 @@ import com.health.openscale.core.datatypes.ScaleMeasurement;
|
||||
import com.health.openscale.core.datatypes.ScaleUser;
|
||||
|
||||
public abstract class EstimatedFatMetric {
|
||||
public enum FORMULA { BF_DEURENBERG, BF_DEURENBERG_II, BF_EDDY, BF_GALLAGHER, BF_GALLAGHER_ASIAN };
|
||||
public enum FORMULA { BF_DEURENBERG, BF_DEURENBERG_II, BF_EDDY, BF_GALLAGHER, BF_GALLAGHER_ASIAN }
|
||||
|
||||
public static EstimatedFatMetric getEstimatedMetric(FORMULA metric) {
|
||||
switch (metric) {
|
||||
|
@@ -19,7 +19,7 @@ import com.health.openscale.core.datatypes.ScaleMeasurement;
|
||||
import com.health.openscale.core.datatypes.ScaleUser;
|
||||
|
||||
public abstract class EstimatedLBWMetric {
|
||||
public enum FORMULA { LBW_HUME, LBW_BOER };
|
||||
public enum FORMULA { LBW_HUME, LBW_BOER }
|
||||
|
||||
public static EstimatedLBWMetric getEstimatedMetric(FORMULA metric) {
|
||||
switch (metric) {
|
||||
|
@@ -19,7 +19,7 @@ import com.health.openscale.core.datatypes.ScaleMeasurement;
|
||||
import com.health.openscale.core.datatypes.ScaleUser;
|
||||
|
||||
public abstract class EstimatedWaterMetric {
|
||||
public enum FORMULA { TBW_BEHNKE, TBW_DELWAIDECRENIER, TBW_HUMEWEYERS, TBW_LEESONGKIM };
|
||||
public enum FORMULA { TBW_BEHNKE, TBW_DELWAIDECRENIER, TBW_HUMEWEYERS, TBW_LEESONGKIM }
|
||||
|
||||
public static EstimatedWaterMetric getEstimatedMetric(FORMULA metric) {
|
||||
switch (metric) {
|
||||
|
@@ -17,7 +17,7 @@
|
||||
package com.health.openscale.core.evaluation;
|
||||
|
||||
public class EvaluationResult {
|
||||
public static enum EVAL_STATE {LOW, NORMAL, HIGH, UNDEFINED};
|
||||
public enum EVAL_STATE {LOW, NORMAL, HIGH, UNDEFINED}
|
||||
|
||||
public float value;
|
||||
public float lowLimit;
|
||||
|
@@ -21,5 +21,5 @@ import com.health.openscale.core.datatypes.ScaleMeasurement;
|
||||
import java.util.List;
|
||||
|
||||
public interface FragmentUpdateListener {
|
||||
public void updateOnView(List<ScaleMeasurement> scaleMeasurementList);
|
||||
void updateOnView(List<ScaleMeasurement> scaleMeasurementList);
|
||||
}
|
||||
|
@@ -49,7 +49,7 @@ import static com.health.openscale.gui.views.MeasurementView.MeasurementViewMode
|
||||
import static com.health.openscale.gui.views.MeasurementView.MeasurementViewMode.VIEW;
|
||||
|
||||
public abstract class MeasurementView extends TableLayout {
|
||||
public enum MeasurementViewMode {VIEW, EDIT, ADD, STATISTIC};
|
||||
public enum MeasurementViewMode {VIEW, EDIT, ADD, STATISTIC}
|
||||
|
||||
private TableRow measurementRow;
|
||||
private ImageView iconView;
|
||||
|
@@ -16,5 +16,5 @@
|
||||
package com.health.openscale.gui.views;
|
||||
|
||||
public interface MeasurementViewUpdateListener {
|
||||
public void onMeasurementViewUpdate(MeasurementView view);
|
||||
void onMeasurementViewUpdate(MeasurementView view);
|
||||
}
|
||||
|
Reference in New Issue
Block a user