1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-11-29 13:26:50 +01:00

Amazfit Bip U/Pro: disable event reminder it is not supported by the device!

This commit is contained in:
Andreas Shimokawa 2021-12-16 17:59:47 +01:00
parent d58cd3997c
commit 055511945b
3 changed files with 10 additions and 5 deletions

View File

@ -88,6 +88,11 @@ public class AmazfitBipUCoordinator extends HuamiCoordinator {
return true;
}
@Override
public int getReminderSlotCount() {
return 0;
}
@Override
public int[] getSupportedDeviceSpecificSettings(GBDevice device) {
return new int[]{

View File

@ -88,6 +88,11 @@ public class AmazfitBipUProCoordinator extends HuamiCoordinator {
return true;
}
@Override
public int getReminderSlotCount() {
return 0;
}
@Override
public int[] getSupportedDeviceSpecificSettings(GBDevice device) {
return new int[]{

View File

@ -74,11 +74,6 @@ public class MiBand2Coordinator extends HuamiCoordinator {
return false;
}
@Override
public int getMaximumReminderMessageLength() {
return 16;
}
@Override
public int getReminderSlotCount() {
return 0;