mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-12-20 07:37:47 +01:00
damn typo
This commit is contained in:
parent
a398f33cb8
commit
ebc1cedf55
@ -38,7 +38,7 @@ public enum AlertCategory {
|
|||||||
// 251-255 defined by service specification
|
// 251-255 defined by service specification
|
||||||
Any(255),
|
Any(255),
|
||||||
Custom(-1),
|
Custom(-1),
|
||||||
CustomMband2(-6);
|
CustomMiBand2(-6);
|
||||||
|
|
||||||
private final int id;
|
private final int id;
|
||||||
|
|
||||||
|
@ -103,7 +103,7 @@ public class AlertNotificationProfile<T extends AbstractBTLEDeviceSupport> exten
|
|||||||
ByteArrayOutputStream stream = new ByteArrayOutputStream(100);
|
ByteArrayOutputStream stream = new ByteArrayOutputStream(100);
|
||||||
stream.write(BLETypeConversions.fromUint8(alert.getCategory().getId()));
|
stream.write(BLETypeConversions.fromUint8(alert.getCategory().getId()));
|
||||||
stream.write(BLETypeConversions.fromUint8(alert.getNumAlerts()));
|
stream.write(BLETypeConversions.fromUint8(alert.getNumAlerts()));
|
||||||
if (alert.getCategory() == AlertCategory.CustomMband2) {
|
if (alert.getCategory() == AlertCategory.CustomMiBand2) {
|
||||||
stream.write(BLETypeConversions.fromUint8(alert.getCustomIcon()));
|
stream.write(BLETypeConversions.fromUint8(alert.getCustomIcon()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -72,7 +72,7 @@ public class AmazfitBipSupport extends MiBand2Support {
|
|||||||
|
|
||||||
int customIconId = AmazfitBipIcon.mapToIconId(notificationSpec.type);
|
int customIconId = AmazfitBipIcon.mapToIconId(notificationSpec.type);
|
||||||
|
|
||||||
AlertCategory alertCategory = AlertCategory.CustomMband2;
|
AlertCategory alertCategory = AlertCategory.CustomMiBand2;
|
||||||
|
|
||||||
// The SMS icon for AlertCategory.SMS is unique and not available as iconId
|
// The SMS icon for AlertCategory.SMS is unique and not available as iconId
|
||||||
if (notificationSpec.type == NotificationType.GENERIC_SMS) {
|
if (notificationSpec.type == NotificationType.GENERIC_SMS) {
|
||||||
|
@ -68,9 +68,9 @@ public class Mi2TextNotificationStrategy extends Mi2NotificationStrategy {
|
|||||||
case Email:
|
case Email:
|
||||||
return new byte[] { BLETypeConversions.fromUint8(AlertCategory.Email.getId()), BLETypeConversions.fromUint8(numAlerts)};
|
return new byte[] { BLETypeConversions.fromUint8(AlertCategory.Email.getId()), BLETypeConversions.fromUint8(numAlerts)};
|
||||||
case InstantMessage:
|
case InstantMessage:
|
||||||
return new byte[] { BLETypeConversions.fromUint8(AlertCategory.CustomMband2.getId()), BLETypeConversions.fromUint8(numAlerts), MiBand2Service.ICON_CHAT};
|
return new byte[] { BLETypeConversions.fromUint8(AlertCategory.CustomMiBand2.getId()), BLETypeConversions.fromUint8(numAlerts), MiBand2Service.ICON_CHAT};
|
||||||
case News:
|
case News:
|
||||||
return new byte[] { BLETypeConversions.fromUint8(AlertCategory.CustomMband2.getId()), BLETypeConversions.fromUint8(numAlerts), MiBand2Service.ICON_PENGUIN};
|
return new byte[] { BLETypeConversions.fromUint8(AlertCategory.CustomMiBand2.getId()), BLETypeConversions.fromUint8(numAlerts), MiBand2Service.ICON_PENGUIN};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return new byte[] { BLETypeConversions.fromUint8(AlertCategory.SMS.getId()), BLETypeConversions.fromUint8(numAlerts)};
|
return new byte[] { BLETypeConversions.fromUint8(AlertCategory.SMS.getId()), BLETypeConversions.fromUint8(numAlerts)};
|
||||||
|
Loading…
Reference in New Issue
Block a user