mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-12-28 19:45:50 +01:00
Sync with Gadgetbridge
This commit is contained in:
parent
0d8428437c
commit
48ed724256
@ -730,8 +730,18 @@ public class WatchXPlusDeviceSupport extends AbstractBTLEDeviceSupport {
|
||||
|
||||
@Override
|
||||
public void onFetchRecordedData(int dataTypes) {
|
||||
|
||||
TransactionBuilder builder;
|
||||
// get battery state
|
||||
try {
|
||||
builder = performInitialized("getBatteryInfo");
|
||||
builder.write(getCharacteristic(WatchXPlusConstants.UUID_CHARACTERISTIC_WRITE),
|
||||
buildCommand(WatchXPlusConstants.CMD_BATTERY_INFO,
|
||||
WatchXPlusConstants.READ_VALUE));
|
||||
builder.queue(getQueue());
|
||||
} catch (IOException e) {
|
||||
LOG.warn("Unable to retrieve battery data", e);
|
||||
}
|
||||
|
||||
try {
|
||||
builder = performInitialized("fetchData");
|
||||
|
||||
|
@ -108,14 +108,12 @@
|
||||
android:inputType="number"
|
||||
android:key="pref_wxp_bp_calibration_low"
|
||||
android:defaultValue="80"
|
||||
android:title="@string/pref_wxp_bp_calibration_low"
|
||||
android:summary="@string/pref_rtl_max_line_length_summary"/>
|
||||
android:title="@string/pref_wxp_bp_calibration_low" />
|
||||
<EditTextPreference
|
||||
android:inputType="number"
|
||||
android:key="pref_wxp_bp_calibration_high"
|
||||
android:defaultValue="130"
|
||||
android:title="@string/pref_wxp_bp_calibration_high"
|
||||
android:summary="@string/pref_rtl_max_line_length_summary"/>
|
||||
android:title="@string/pref_wxp_bp_calibration_high" />
|
||||
<ListPreference
|
||||
android:defaultValue="1"
|
||||
android:title="@string/prefs_wxp_button_bp_calibration"
|
||||
|
Loading…
Reference in New Issue
Block a user