mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-05 09:47:01 +01:00
Add Garmin Forerunner 245
This commit is contained in:
parent
42e44de1ac
commit
69934b2d7c
@ -0,0 +1,18 @@
|
|||||||
|
package nodomain.freeyourgadget.gadgetbridge.devices.garmin.forerunner245;
|
||||||
|
|
||||||
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
|
import nodomain.freeyourgadget.gadgetbridge.R;
|
||||||
|
import nodomain.freeyourgadget.gadgetbridge.devices.garmin.GarminCoordinator;
|
||||||
|
|
||||||
|
public class GarminForerunner245Coordinator extends GarminCoordinator {
|
||||||
|
@Override
|
||||||
|
protected Pattern getSupportedDeviceName() {
|
||||||
|
return Pattern.compile("Forerunner 245");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getDeviceNameResource() {
|
||||||
|
return R.string.devicetype_garmin_forerunner_245;
|
||||||
|
}
|
||||||
|
}
|
@ -50,6 +50,7 @@ import nodomain.freeyourgadget.gadgetbridge.devices.galaxy_buds.GalaxyBuds2ProDe
|
|||||||
import nodomain.freeyourgadget.gadgetbridge.devices.galaxy_buds.GalaxyBudsDeviceCoordinator;
|
import nodomain.freeyourgadget.gadgetbridge.devices.galaxy_buds.GalaxyBudsDeviceCoordinator;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.devices.galaxy_buds.GalaxyBudsLiveDeviceCoordinator;
|
import nodomain.freeyourgadget.gadgetbridge.devices.galaxy_buds.GalaxyBudsLiveDeviceCoordinator;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.devices.galaxy_buds.GalaxyBudsProDeviceCoordinator;
|
import nodomain.freeyourgadget.gadgetbridge.devices.galaxy_buds.GalaxyBudsProDeviceCoordinator;
|
||||||
|
import nodomain.freeyourgadget.gadgetbridge.devices.garmin.forerunner245.GarminForerunner245Coordinator;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.devices.garmin.instinct2s.GarminInstinct2SCoordinator;
|
import nodomain.freeyourgadget.gadgetbridge.devices.garmin.instinct2s.GarminInstinct2SCoordinator;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.devices.garmin.venu3.GarminVenu3Coordinator;
|
import nodomain.freeyourgadget.gadgetbridge.devices.garmin.venu3.GarminVenu3Coordinator;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.devices.garmin.vivomove.GarminVivomoveStyleCoordinator;
|
import nodomain.freeyourgadget.gadgetbridge.devices.garmin.vivomove.GarminVivomoveStyleCoordinator;
|
||||||
@ -332,6 +333,7 @@ public enum DeviceType {
|
|||||||
ITAG(ITagCoordinator.class),
|
ITAG(ITagCoordinator.class),
|
||||||
NUTMINI(NutCoordinator.class),
|
NUTMINI(NutCoordinator.class),
|
||||||
VIVOMOVE_HR(VivomoveHrCoordinator.class),
|
VIVOMOVE_HR(VivomoveHrCoordinator.class),
|
||||||
|
GARMIN_FORERUNNER_245(GarminForerunner245Coordinator.class),
|
||||||
GARMIN_INSTINCT_2S(GarminInstinct2SCoordinator.class),
|
GARMIN_INSTINCT_2S(GarminInstinct2SCoordinator.class),
|
||||||
GARMIN_VIVOMOVE_STYLE(GarminVivomoveStyleCoordinator.class),
|
GARMIN_VIVOMOVE_STYLE(GarminVivomoveStyleCoordinator.class),
|
||||||
GARMIN_VENU_3(GarminVenu3Coordinator.class),
|
GARMIN_VENU_3(GarminVenu3Coordinator.class),
|
||||||
|
@ -1489,6 +1489,7 @@
|
|||||||
<string name="devicetype_garmin_vivomove_hr">Garmin Vivomove HR</string>
|
<string name="devicetype_garmin_vivomove_hr">Garmin Vivomove HR</string>
|
||||||
<string name="devicetype_garmin_vivomove_style">Vívomove Style</string>
|
<string name="devicetype_garmin_vivomove_style">Vívomove Style</string>
|
||||||
<string name="devicetype_garmin_instinct_2s">Garmin Instinct 2S</string>
|
<string name="devicetype_garmin_instinct_2s">Garmin Instinct 2S</string>
|
||||||
|
<string name="devicetype_garmin_forerunner_245">Garmin Forerunner 245</string>
|
||||||
<string name="devicetype_vibratissimo">Vibratissimo</string>
|
<string name="devicetype_vibratissimo">Vibratissimo</string>
|
||||||
<string name="devicetype_um25">UM-25</string>
|
<string name="devicetype_um25">UM-25</string>
|
||||||
<string name="devicetype_liveview">LiveView</string>
|
<string name="devicetype_liveview">LiveView</string>
|
||||||
|
Loading…
Reference in New Issue
Block a user