1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-05 04:21:35 +02:00

Mi Band 3: Make order of menu items on screen deterministic again

(This partly reverts the logic of the previous commit)
This commit is contained in:
Andreas Shimokawa 2018-08-12 00:16:56 +02:00
parent 470efa3e51
commit b48b52b175

View File

@ -51,29 +51,25 @@ public class MiBand3Support extends AmazfitBipSupport {
byte pos = 1;
if (pages != null) {
for (String page : pages) {
switch (page) {
case "notifications":
command[1] |= 0x02;
command[4] = pos++;
break;
case "weather":
command[1] |= 0x04;
command[5] = pos++;
break;
case "more":
command[1] |= 0x10;
command[7] = pos++;
break;
case "status":
command[1] |= 0x20;
command[8] = pos++;
break;
case "heart_rate":
command[1] |= 0x40;
command[9] = pos++;
break;
}
if (pages.contains("notifications")) {
command[1] |= 0x02;
command[4] = pos++;
}
if (pages.contains("weather")) {
command[1] |= 0x04;
command[5] = pos++;
}
if (pages.contains("more")) {
command[1] |= 0x10;
command[7] = pos++;
}
if (pages.contains("status")) {
command[1] |= 0x20;
command[8] = pos++;
}
if (pages.contains("heart_rate")) {
command[1] |= 0x40;
command[9] = pos++;
}
}