1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-10-06 13:20:30 +02:00

initial support for Garmin Forerunner 255 Music

This commit is contained in:
Marc 2024-07-29 21:36:07 +02:00 committed by cram
parent 1c5e485bfe
commit af9eec3189
3 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,18 @@
package nodomain.freeyourgadget.gadgetbridge.devices.garmin.watches.forerunner;
import java.util.regex.Pattern;
import nodomain.freeyourgadget.gadgetbridge.R;
import nodomain.freeyourgadget.gadgetbridge.devices.garmin.GarminCoordinator;
public class GarminForerunner255MusicCoordinator extends GarminCoordinator {
@Override
protected Pattern getSupportedDeviceName() {
return Pattern.compile("^Forerunner 255 Music$");
}
@Override
public int getDeviceNameResource() {
return R.string.devicetype_garmin_forerunner_255_music;
}
}

View File

@ -59,6 +59,7 @@ import nodomain.freeyourgadget.gadgetbridge.devices.garmin.watches.fenix.GarminF
import nodomain.freeyourgadget.gadgetbridge.devices.garmin.watches.fenix.GarminFenix7ProCoordinator; import nodomain.freeyourgadget.gadgetbridge.devices.garmin.watches.fenix.GarminFenix7ProCoordinator;
import nodomain.freeyourgadget.gadgetbridge.devices.garmin.watches.forerunner.GarminForerunner245Coordinator; import nodomain.freeyourgadget.gadgetbridge.devices.garmin.watches.forerunner.GarminForerunner245Coordinator;
import nodomain.freeyourgadget.gadgetbridge.devices.garmin.watches.forerunner.GarminForerunner255Coordinator; import nodomain.freeyourgadget.gadgetbridge.devices.garmin.watches.forerunner.GarminForerunner255Coordinator;
import nodomain.freeyourgadget.gadgetbridge.devices.garmin.watches.forerunner.GarminForerunner255MusicCoordinator;
import nodomain.freeyourgadget.gadgetbridge.devices.garmin.watches.forerunner.GarminForerunner255SCoordinator; import nodomain.freeyourgadget.gadgetbridge.devices.garmin.watches.forerunner.GarminForerunner255SCoordinator;
import nodomain.freeyourgadget.gadgetbridge.devices.garmin.watches.forerunner.GarminForerunner255SMusicCoordinator; import nodomain.freeyourgadget.gadgetbridge.devices.garmin.watches.forerunner.GarminForerunner255SMusicCoordinator;
import nodomain.freeyourgadget.gadgetbridge.devices.garmin.watches.forerunner.GarminForerunner265Coordinator; import nodomain.freeyourgadget.gadgetbridge.devices.garmin.watches.forerunner.GarminForerunner265Coordinator;
@ -376,6 +377,7 @@ public enum DeviceType {
GARMIN_FENIX_7_PRO(GarminFenix7ProCoordinator.class), GARMIN_FENIX_7_PRO(GarminFenix7ProCoordinator.class),
GARMIN_FORERUNNER_245(GarminForerunner245Coordinator.class), GARMIN_FORERUNNER_245(GarminForerunner245Coordinator.class),
GARMIN_FORERUNNER_255(GarminForerunner255Coordinator.class), GARMIN_FORERUNNER_255(GarminForerunner255Coordinator.class),
GARMIN_FORERUNNER_255_MUSIC(GarminForerunner255MusicCoordinator.class),
GARMIN_FORERUNNER_255S(GarminForerunner255SCoordinator.class), GARMIN_FORERUNNER_255S(GarminForerunner255SCoordinator.class),
GARMIN_FORERUNNER_255S_MUSIC(GarminForerunner255SMusicCoordinator.class), GARMIN_FORERUNNER_255S_MUSIC(GarminForerunner255SMusicCoordinator.class),
GARMIN_FORERUNNER_265(GarminForerunner265Coordinator.class), GARMIN_FORERUNNER_265(GarminForerunner265Coordinator.class),

View File

@ -1530,6 +1530,7 @@
<string name="devicetype_garmin_instinct_crossover">Garmin Instinct Crossover</string> <string name="devicetype_garmin_instinct_crossover">Garmin Instinct Crossover</string>
<string name="devicetype_garmin_forerunner_245">Garmin Forerunner 245</string> <string name="devicetype_garmin_forerunner_245">Garmin Forerunner 245</string>
<string name="devicetype_garmin_forerunner_255">Garmin Forerunner 255</string> <string name="devicetype_garmin_forerunner_255">Garmin Forerunner 255</string>
<string name="devicetype_garmin_forerunner_255_music">Garmin Forerunner 255 Music</string>
<string name="devicetype_garmin_forerunner_255s">Garmin Forerunner 255S</string> <string name="devicetype_garmin_forerunner_255s">Garmin Forerunner 255S</string>
<string name="devicetype_garmin_forerunner_255s_music">Garmin Forerunner 255S Music</string> <string name="devicetype_garmin_forerunner_255s_music">Garmin Forerunner 255S Music</string>
<string name="devicetype_garmin_forerunner_265">Garmin Forerunner 265</string> <string name="devicetype_garmin_forerunner_265">Garmin Forerunner 265</string>