Pebble 2 Duo: allow activating health

This commit is contained in:
Andreas Shimokawa
2025-10-30 18:35:04 +01:00
parent 09a99f934a
commit 0698380a1d
@@ -48,8 +48,10 @@ public class PebbleUtils {
return "chalk"; return "chalk";
} else if (hwRev.startsWith("silk")) { } else if (hwRev.startsWith("silk")) {
return "diorite"; return "diorite";
} else if (hwRev.startsWith("robert")) { } else if (hwRev.startsWith("robert") || hwRev.startsWith("obelix")) {
return "emery"; return "emery";
} else if (hwRev.startsWith("asterix")) {
return "flint";
} }
return DEFAULT_PLATFORM; return DEFAULT_PLATFORM;
} }
@@ -66,8 +68,10 @@ public class PebbleUtils {
return "pebble_time_round_black_20mm"; return "pebble_time_round_black_20mm";
} else if (hwRev.startsWith("silk")) { } else if (hwRev.startsWith("silk")) {
return "pebble2_black"; return "pebble2_black";
} else if (hwRev.startsWith("robert")) { } else if (hwRev.startsWith("robert") || hwRev.startsWith("obelix")) {
return "pebble_time2_black"; return "pebble_time2_black";
} else if (hwRev.startsWith("asterix")) {
return "pebble2_duo_black";
} }
return DEFAULT_MODEL; return DEFAULT_MODEL;
} }