/* Copyright (C) 2020 Andreas Shimokawa 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.amazfitneo; 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 java.util.Arrays; import java.util.List; import nodomain.freeyourgadget.gadgetbridge.R; import nodomain.freeyourgadget.gadgetbridge.capabilities.HeartRateCapability; import nodomain.freeyourgadget.gadgetbridge.devices.InstallHandler; import nodomain.freeyourgadget.gadgetbridge.devices.huami.HuamiConst; 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; public class AmazfitNeoCoordinator extends HuamiCoordinator { private static final Logger LOG = LoggerFactory.getLogger(AmazfitNeoCoordinator.class); @Override public DeviceType getDeviceType() { return DeviceType.AMAZFITNEO; } @NonNull @Override public DeviceType getSupportedType(GBDeviceCandidate candidate) { try { BluetoothDevice device = candidate.getDevice(); String name = device.getName(); if (name != null && name.equalsIgnoreCase(HuamiConst.AMAZFIT_NEO_NAME)) { return DeviceType.AMAZFITNEO; } } catch (Exception ex) { LOG.error("unable to check device support", ex); } return DeviceType.UNKNOWN; } @Override public InstallHandler findInstallHandler(Uri uri, Context context) { AmazfitNeoFWInstallHandler handler = new AmazfitNeoFWInstallHandler(uri, context); return handler.isValid() ? handler : null; } @Override public boolean supportsHeartRateMeasurement(GBDevice device) { return true; } @Override public boolean supportsWeather() { return true; } @Override public boolean supportsActivityTracks() { return false; } @Override public int getWorldClocksSlotCount() { return 20; // max in Zepp app } @Override public int getWorldClocksLabelLength() { return 3; // neo has 3 letter city codes } @Override public int getReminderSlotCount() { return 0; // Neo does not support reminders } @Override public int[] getSupportedDeviceSpecificSettings(GBDevice device) { return new int[]{ R.xml.devicesettings_amazfitneo, R.xml.devicesettings_wearlocation, R.xml.devicesettings_heartrate_sleep_activity, R.xml.devicesettings_goal_notification, R.xml.devicesettings_timeformat, R.xml.devicesettings_world_clocks, R.xml.devicesettings_liftwrist_display, R.xml.devicesettings_inactivity_dnd, R.xml.devicesettings_hourly_chime, R.xml.devicesettings_expose_hr_thirdparty, R.xml.devicesettings_bt_connected_advertisement, R.xml.devicesettings_device_actions, R.xml.devicesettings_high_mtu, R.xml.devicesettings_overwrite_settings_on_connection, R.xml.devicesettings_transliteration }; } @Override public int getBondingStyle() { return BONDING_STYLE_REQUIRE_KEY; } @Override public List getHeartRateMeasurementIntervals() { return Arrays.asList( HeartRateCapability.MeasurementInterval.OFF, HeartRateCapability.MeasurementInterval.MINUTES_1, HeartRateCapability.MeasurementInterval.MINUTES_5, HeartRateCapability.MeasurementInterval.MINUTES_10, HeartRateCapability.MeasurementInterval.MINUTES_30 ); } }