Some cleanup
This commit is contained in:
parent
a7792f6b72
commit
92caed5af4
|
@ -325,19 +325,12 @@ public class MiBandSupport extends AbstractBTLEDeviceSupport {
|
||||||
@Override
|
@Override
|
||||||
public void onReboot() {
|
public void onReboot() {
|
||||||
try {
|
try {
|
||||||
TransactionBuilder builder = performInitialized("send command");
|
TransactionBuilder builder = performInitialized("fetch activity data");
|
||||||
builder.write(getCharacteristic(MiBandService.UUID_CHARACTERISTIC_CONTROL_POINT), fetch);
|
builder.write(getCharacteristic(MiBandService.UUID_CHARACTERISTIC_CONTROL_POINT), fetch);
|
||||||
builder.queue(getQueue());
|
builder.queue(getQueue());
|
||||||
} catch (IOException ex) {
|
} catch (IOException ex) {
|
||||||
LOG.error("Unable to fetch MI", ex);
|
LOG.error("Unable to fetch MI activity data", ex);
|
||||||
}
|
}
|
||||||
// try {
|
|
||||||
// TransactionBuilder builder = performInitialized("Read Activity data");
|
|
||||||
// BluetoothGattCharacteristic characteristic = getCharacteristic(MiBandService.UUID_CHARACTERISTIC_ACTIVITY_DATA);
|
|
||||||
// builder.read(characteristic).queue(getQueue());
|
|
||||||
// } catch (IOException ex) {
|
|
||||||
// LOG.error("Unable to read activity data from MI", ex);
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue