mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-04 09:17:29 +01:00
Mi Watch Color Sport: Experimental support
This commit is contained in:
parent
ec050d7a4f
commit
e6cb15d9eb
@ -98,6 +98,7 @@ vendor's servers.
|
|||||||
- Xiaomi Smart Band 7 Pro (experimental) [**\[!\]**](#special-pairing-procedures)
|
- Xiaomi Smart Band 7 Pro (experimental) [**\[!\]**](#special-pairing-procedures)
|
||||||
- [Xiaomi Smart Band 7](https://codeberg.org/Freeyourgadget/Gadgetbridge/wiki/Mi-Band-7) [**\[!\]**](#special-pairing-procedures)
|
- [Xiaomi Smart Band 7](https://codeberg.org/Freeyourgadget/Gadgetbridge/wiki/Mi-Band-7) [**\[!\]**](#special-pairing-procedures)
|
||||||
- [Xiaomi Smart Band 8 (experimental)](https://codeberg.org/Freeyourgadget/Gadgetbridge/wiki/Mi-Band-8) [**\[!\]**](#special-pairing-procedures)
|
- [Xiaomi Smart Band 8 (experimental)](https://codeberg.org/Freeyourgadget/Gadgetbridge/wiki/Mi-Band-8) [**\[!\]**](#special-pairing-procedures)
|
||||||
|
- Mi Watch Color Sport (experimental)
|
||||||
- Mi Watch Lite (experimental)
|
- Mi Watch Lite (experimental)
|
||||||
- Redmi Watch 3 Active (experimental) [**\[!\]**](#special-pairing-procedures)
|
- Redmi Watch 3 Active (experimental) [**\[!\]**](#special-pairing-procedures)
|
||||||
- Watch S1 Active (experimental) [**\[!\]**](#special-pairing-procedures)
|
- Watch S1 Active (experimental) [**\[!\]**](#special-pairing-procedures)
|
||||||
|
@ -0,0 +1,64 @@
|
|||||||
|
/* Copyright (C) 2023 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 <http://www.gnu.org/licenses/>. */
|
||||||
|
package nodomain.freeyourgadget.gadgetbridge.devices.xiaomi.miwatchcolorsport;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.net.Uri;
|
||||||
|
|
||||||
|
import androidx.annotation.Nullable;
|
||||||
|
|
||||||
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
|
import nodomain.freeyourgadget.gadgetbridge.R;
|
||||||
|
import nodomain.freeyourgadget.gadgetbridge.devices.InstallHandler;
|
||||||
|
import nodomain.freeyourgadget.gadgetbridge.devices.xiaomi.XiaomiCoordinator;
|
||||||
|
import nodomain.freeyourgadget.gadgetbridge.devices.xiaomi.XiaomiInstallHandler;
|
||||||
|
|
||||||
|
public class MiWatchColorSportCoordinator extends XiaomiCoordinator {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getDeviceNameResource() {
|
||||||
|
return R.string.devicetype_mi_watch_color_sport;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected Pattern getSupportedDeviceName() {
|
||||||
|
return Pattern.compile("^Mi ColorS [0-9A-Z]{4}$");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isExperimental() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Nullable
|
||||||
|
@Override
|
||||||
|
public InstallHandler findInstallHandler(Uri uri, Context context) {
|
||||||
|
final XiaomiInstallHandler handler = new XiaomiInstallHandler(uri, context);
|
||||||
|
return handler.isValid() ? handler : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getDefaultIconResource() {
|
||||||
|
return R.drawable.ic_device_miwatch;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getDisabledIconResource() {
|
||||||
|
return R.drawable.ic_device_miwatch_disabled;
|
||||||
|
}
|
||||||
|
}
|
@ -142,6 +142,7 @@ import nodomain.freeyourgadget.gadgetbridge.devices.watch9.Watch9DeviceCoordinat
|
|||||||
import nodomain.freeyourgadget.gadgetbridge.devices.withingssteelhr.WithingsSteelHRDeviceCoordinator;
|
import nodomain.freeyourgadget.gadgetbridge.devices.withingssteelhr.WithingsSteelHRDeviceCoordinator;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.devices.xiaomi.miband7pro.MiBand7ProCoordinator;
|
import nodomain.freeyourgadget.gadgetbridge.devices.xiaomi.miband7pro.MiBand7ProCoordinator;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.devices.xiaomi.miband8.MiBand8Coordinator;
|
import nodomain.freeyourgadget.gadgetbridge.devices.xiaomi.miband8.MiBand8Coordinator;
|
||||||
|
import nodomain.freeyourgadget.gadgetbridge.devices.xiaomi.miwatchcolorsport.MiWatchColorSportCoordinator;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.devices.xiaomi.watchs1active.XiaomiWatchS1ActiveCoordinator;
|
import nodomain.freeyourgadget.gadgetbridge.devices.xiaomi.watchs1active.XiaomiWatchS1ActiveCoordinator;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.devices.xwatch.XWatchCoordinator;
|
import nodomain.freeyourgadget.gadgetbridge.devices.xwatch.XWatchCoordinator;
|
||||||
import nodomain.freeyourgadget.gadgetbridge.devices.zetime.ZeTimeCoordinator;
|
import nodomain.freeyourgadget.gadgetbridge.devices.zetime.ZeTimeCoordinator;
|
||||||
@ -200,6 +201,7 @@ public enum DeviceType {
|
|||||||
MIBAND7PRO(MiBand7ProCoordinator.class),
|
MIBAND7PRO(MiBand7ProCoordinator.class),
|
||||||
MIBAND8(MiBand8Coordinator.class),
|
MIBAND8(MiBand8Coordinator.class),
|
||||||
MIWATCHLITE(MiWatchLiteCoordinator.class),
|
MIWATCHLITE(MiWatchLiteCoordinator.class),
|
||||||
|
MIWATCHCOLORSPORT(MiWatchColorSportCoordinator.class),
|
||||||
REDMIWATCH3ACTIVE(RedmiWatch3ActiveCoordinator.class),
|
REDMIWATCH3ACTIVE(RedmiWatch3ActiveCoordinator.class),
|
||||||
XIAOMI_WATCH_S1_ACTIVE(XiaomiWatchS1ActiveCoordinator.class),
|
XIAOMI_WATCH_S1_ACTIVE(XiaomiWatchS1ActiveCoordinator.class),
|
||||||
AMAZFITGTS3(AmazfitGTS3Coordinator.class),
|
AMAZFITGTS3(AmazfitGTS3Coordinator.class),
|
||||||
|
@ -2431,4 +2431,5 @@
|
|||||||
<string name="pref_sleep_mode_schedule_title">Sleep Mode Schedule</string>
|
<string name="pref_sleep_mode_schedule_title">Sleep Mode Schedule</string>
|
||||||
<string name="pref_sleep_mode_schedule_summary">Send a reminder and enter sleep mode at bedtime. At the scheduled wake-up time, the wake-up alarm will sound.</string>
|
<string name="pref_sleep_mode_schedule_summary">Send a reminder and enter sleep mode at bedtime. At the scheduled wake-up time, the wake-up alarm will sound.</string>
|
||||||
<string name="devicetype_xiaomi_watch_s1_active">Xiaomi Watch S1 Active</string>
|
<string name="devicetype_xiaomi_watch_s1_active">Xiaomi Watch S1 Active</string>
|
||||||
|
<string name="devicetype_mi_watch_color_sport">Mi Watch Color Sport</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
Loading…
Reference in New Issue
Block a user