mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2026-07-31 07:44:24 +02:00
Amazfit Active Max: Experimental support
This commit is contained in:
+87
@@ -0,0 +1,87 @@
|
||||
/* Copyright (C) 2025 José Rebelo
|
||||
|
||||
This file is part of Gadgetbridge.
|
||||
|
||||
Gadgetbridge is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as published
|
||||
by the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
Gadgetbridge is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>. */
|
||||
package nodomain.freeyourgadget.gadgetbridge.devices.huami.zeppos.watches;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
import nodomain.freeyourgadget.gadgetbridge.R;
|
||||
import nodomain.freeyourgadget.gadgetbridge.devices.huami.zeppos.ZeppOsCoordinator;
|
||||
import nodomain.freeyourgadget.gadgetbridge.impl.GBDevice;
|
||||
|
||||
public class AmazfitActiveMaxCoordinator extends ZeppOsCoordinator {
|
||||
@Override
|
||||
public boolean isExperimental() {
|
||||
return true; // untested
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<String> getDeviceBluetoothNames() {
|
||||
// We never saw one, so we're not sure about the exact Bluetooth name
|
||||
return Arrays.asList(
|
||||
"Amazfit Active Max",
|
||||
"Active Max"
|
||||
);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Set<Integer> getDeviceSources() {
|
||||
return new HashSet<>(Arrays.asList(
|
||||
10813697,
|
||||
10813699
|
||||
));
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getDeviceNameResource() {
|
||||
return R.string.devicetype_amazfit_active_max;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean mainMenuHasMoreSection() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supportsGpxUploads(final GBDevice device) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supportsControlCenter() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supportsToDoList() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supportsBluetoothPhoneCalls(final GBDevice device) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public DeviceKind getDeviceKind(@NonNull GBDevice device) {
|
||||
return DeviceKind.WATCH;
|
||||
}
|
||||
}
|
||||
@@ -221,6 +221,7 @@ import nodomain.freeyourgadget.gadgetbridge.devices.huami.zeppos.watches.Amazfit
|
||||
import nodomain.freeyourgadget.gadgetbridge.devices.huami.zeppos.watches.AmazfitActive2SquareCoordinator;
|
||||
import nodomain.freeyourgadget.gadgetbridge.devices.huami.zeppos.watches.AmazfitActiveCoordinator;
|
||||
import nodomain.freeyourgadget.gadgetbridge.devices.huami.zeppos.watches.AmazfitActiveEdgeCoordinator;
|
||||
import nodomain.freeyourgadget.gadgetbridge.devices.huami.zeppos.watches.AmazfitActiveMaxCoordinator;
|
||||
import nodomain.freeyourgadget.gadgetbridge.devices.huami.zeppos.watches.AmazfitBalance2Coordinator;
|
||||
import nodomain.freeyourgadget.gadgetbridge.devices.huami.zeppos.watches.AmazfitBalanceCoordinator;
|
||||
import nodomain.freeyourgadget.gadgetbridge.devices.huami.zeppos.watches.AmazfitBand7Coordinator;
|
||||
@@ -546,6 +547,7 @@ public enum DeviceType {
|
||||
AMAZFITACTIVE2NFC(AmazfitActive2NfcCoordinator.class),
|
||||
AMAZFITACTIVE2SQUARE(AmazfitActive2SquareCoordinator.class),
|
||||
AMAZFITACTIVEEDGE(AmazfitActiveEdgeCoordinator.class),
|
||||
AMAZFITACTIVEMAX(AmazfitActiveMaxCoordinator.class),
|
||||
AMAZFITHELIORING(AmazfitHelioRingCoordinator.class),
|
||||
AMAZFITHELIOSTRAP(AmazfitHelioStrapCoordinator.class),
|
||||
HPLUS(HPlusCoordinator.class),
|
||||
|
||||
@@ -1859,6 +1859,7 @@
|
||||
<string name="devicetype_amazfit_gtr4" translatable="false">Amazfit GTR 4</string>
|
||||
<string name="devicetype_amazfit_trex_2" translatable="false">Amazfit T-Rex 2</string>
|
||||
<string name="devicetype_amazfit_trex_3" translatable="false">Amazfit T-Rex 3</string>
|
||||
<string name="devicetype_amazfit_active_max" translatable="false">Amazfit Active Max</string>
|
||||
<string name="devicetype_amazfit_trex_3_pro_44mm" translatable="false">Amazfit T-Rex 3 Pro (44mm)</string>
|
||||
<string name="devicetype_amazfit_trex_3_pro_48mm" translatable="false">Amazfit T-Rex 3 Pro (48mm)</string>
|
||||
<string name="devicetype_amazfit_trex_ultra" translatable="false">Amazfit T-Rex Ultra</string>
|
||||
|
||||
Reference in New Issue
Block a user