1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-17 02:44:04 +02:00
Gadgetbridge/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/util/PebbleUtils.java

33 lines
980 B
Java
Raw Normal View History

package nodomain.freeyourgadget.gadgetbridge.util;
public class PebbleUtils {
public static String getPlatformName(String hwRev) {
String platformName;
if (hwRev.startsWith("snowy")) {
platformName = "basalt";
} else if (hwRev.startsWith("spalding")) {
platformName = "chalk";
2016-06-15 22:53:05 +02:00
} else if (hwRev.startsWith("silk")) {
platformName = "diorite";
} else {
platformName = "aplite";
}
return platformName;
}
2016-03-20 15:00:05 +01:00
public static String getModel(String hwRev) {
//TODO: get real data?
String model;
if (hwRev.startsWith("snowy")) {
model = "pebble_time_black";
} else if (hwRev.startsWith("spalding")) {
model = "pebble_time_round_black_20mm";
2016-06-15 22:53:05 +02:00
} else if (hwRev.startsWith("silk")) {
model = "pebble2_black";
} else {
model = "pebble_black";
}
return model;
}
}