/* Copyright (C) 2017-2021 Andreas Shimokawa, Carsten Pfeiffer, Daniele Gobbetti, João Paulo Barraca, Nephiel, Petr Vaněk, Zhong Jianxin 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 . */ package nodomain.freeyourgadget.gadgetbridge.devices.huami.amazfitbips; import android.bluetooth.BluetoothDevice; import android.content.Context; import android.net.Uri; import androidx.annotation.NonNull; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import nodomain.freeyourgadget.gadgetbridge.R; import nodomain.freeyourgadget.gadgetbridge.devices.InstallHandler; import nodomain.freeyourgadget.gadgetbridge.devices.huami.HuamiCoordinator; import nodomain.freeyourgadget.gadgetbridge.impl.GBDevice; import nodomain.freeyourgadget.gadgetbridge.impl.GBDeviceCandidate; import nodomain.freeyourgadget.gadgetbridge.model.DeviceType; import nodomain.freeyourgadget.gadgetbridge.service.DeviceSupport; import nodomain.freeyourgadget.gadgetbridge.service.devices.huami.amazfitbips.AmazfitBipSSupport; public class AmazfitBipSCoordinator extends HuamiCoordinator { private static final Logger LOG = LoggerFactory.getLogger(AmazfitBipSCoordinator.class); @Override public DeviceType getDeviceType() { return DeviceType.AMAZFITBIPS; } @NonNull @Override public DeviceType getSupportedType(GBDeviceCandidate candidate) { try { BluetoothDevice device = candidate.getDevice(); String name = device.getName(); if (name != null && (name.equalsIgnoreCase("Amazfit Bip S"))) { return DeviceType.AMAZFITBIPS; } } catch (Exception ex) { LOG.error("unable to check device support", ex); } return DeviceType.UNKNOWN; } @Override public InstallHandler findInstallHandler(Uri uri, Context context) { AmazfitBipSFWInstallHandler handler = new AmazfitBipSFWInstallHandler(uri, context); return handler.isValid() ? handler : null; } @Override public boolean supportsHeartRateMeasurement(GBDevice device) { return true; } @Override public boolean supportsActivityTracks() { return true; } @Override public boolean supportsWeather() { return true; } @Override public boolean supportsMusicInfo() { return true; } @Override public int getWorldClocksSlotCount() { return 20; // as enforced by Mi Fit } @Override public int getWorldClocksLabelLength() { return 30; // at least } @Override public int[] getSupportedDeviceSpecificSettings(GBDevice device) { return new int[]{ R.xml.devicesettings_amazfitbips, R.xml.devicesettings_timeformat, R.xml.devicesettings_world_clocks, R.xml.devicesettings_wearlocation, R.xml.devicesettings_heartrate_sleep, R.xml.devicesettings_goal_notification, R.xml.devicesettings_custom_emoji_font, R.xml.devicesettings_liftwrist_display, R.xml.devicesettings_inactivity_dnd, R.xml.devicesettings_sync_calendar, R.xml.devicesettings_reserve_reminders_calendar, R.xml.devicesettings_expose_hr_thirdparty, R.xml.devicesettings_bt_connected_advertisement, R.xml.devicesettings_high_mtu, R.xml.devicesettings_device_actions, R.xml.devicesettings_overwrite_settings_on_connection, R.xml.devicesettings_huami2021_fetch_operation_time_unit, R.xml.devicesettings_transliteration }; } @NonNull @Override public Class getDeviceSupportClass() { return AmazfitBipSSupport.class; } @Override public int getBondingStyle() { return BONDING_STYLE_REQUIRE_KEY; } }