/* Copyright (C) 2016-2021 Andreas Shimokawa, Carsten Pfeiffer, Daniele Gobbetti, Gordon Williams, 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 . */ package nodomain.freeyourgadget.gadgetbridge.devices.banglejs; import android.annotation.TargetApi; import android.app.Activity; import android.bluetooth.le.ScanFilter; import android.content.Context; import android.net.Uri; import android.os.Build; import android.os.ParcelUuid; import androidx.annotation.NonNull; import java.util.Collection; import java.util.Collections; import java.util.Vector; import nodomain.freeyourgadget.gadgetbridge.BuildConfig; import nodomain.freeyourgadget.gadgetbridge.GBApplication; import nodomain.freeyourgadget.gadgetbridge.R; import nodomain.freeyourgadget.gadgetbridge.activities.appmanager.AppManagerActivity; import nodomain.freeyourgadget.gadgetbridge.devices.AbstractBLEDeviceCoordinator; import nodomain.freeyourgadget.gadgetbridge.devices.InstallHandler; import nodomain.freeyourgadget.gadgetbridge.devices.SampleProvider; import nodomain.freeyourgadget.gadgetbridge.entities.DaoSession; import nodomain.freeyourgadget.gadgetbridge.entities.Device; import nodomain.freeyourgadget.gadgetbridge.impl.GBDevice; import nodomain.freeyourgadget.gadgetbridge.impl.GBDeviceCandidate; import nodomain.freeyourgadget.gadgetbridge.model.ActivitySample; import nodomain.freeyourgadget.gadgetbridge.model.DeviceType; public class BangleJSCoordinator extends AbstractBLEDeviceCoordinator { @Override public DeviceType getDeviceType() { return DeviceType.BANGLEJS; } @Override public String getManufacturer() { return "Espruino"; } @NonNull @Override public Collection createBLEScanFilters() { // TODO: filter on name beginning Bangle.js? Doesn't appear to be built-in :( // https://developer.android.com/reference/android/bluetooth/le/ScanFilter.Builder.html#setDeviceName(java.lang.String) ParcelUuid hpService = new ParcelUuid(BangleJSConstants.UUID_SERVICE_NORDIC_UART); ScanFilter filter = new ScanFilter.Builder().setServiceUuid(hpService).build(); return Collections.singletonList(filter); } @NonNull @Override public DeviceType getSupportedType(GBDeviceCandidate candidate) { String name = candidate.getDevice().getName(); /* Filter by Espruino devices to avoid getting the device chooser full of spam devices. */ if (name != null && ( name.startsWith("Bangle.js") || name.startsWith("Pixl.js") || name.startsWith("Puck.js") || name.startsWith("MDBT42Q") || name.startsWith("Espruino"))) return DeviceType.BANGLEJS; return DeviceType.UNKNOWN; } @Override public int getBondingStyle(){ // Let the user decide whether to bond or not after discovery. return BONDING_STYLE_ASK; } @Override public boolean supportsCalendarEvents() { return true; } @Override public boolean supportsRealtimeData() { return true; } @Override public boolean supportsWeather() { return true; } @Override public boolean supportsFindDevice() { return true; } @Override public boolean supportsActivityDataFetching() { return false; } @Override public boolean supportsActivityTracking() { return true; } @Override public boolean supportsScreenshots() { return false; } @Override public boolean supportsSmartWakeup(GBDevice device) { return false; } @Override public boolean supportsHeartRateMeasurement(GBDevice device) { return true; } @Override public int getAlarmSlotCount() { return 10; } @Override public boolean supportsAppsManagement() { return BuildConfig.INTERNET_ACCESS; } @Override public Class getAppsManagementActivity() { return BuildConfig.INTERNET_ACCESS ? AppsManagementActivity.class : null; } @Override protected void deleteDevice(@NonNull GBDevice gbDevice, @NonNull Device device, @NonNull DaoSession session) { } @Override public Class getPairingActivity() { return null; } @Override public SampleProvider getSampleProvider(GBDevice device, DaoSession session) { return new BangleJSSampleProvider(device, session); } @Override public InstallHandler findInstallHandler(Uri uri, Context context) { return null; } @Override public boolean supportsUnicodeEmojis() { /* we say yes here (because we can't get a handle to our device's prefs to check) and then in 'renderUnicodeAsImage' we call EmojiConverter.convertUnicodeEmojiToAscii just like DeviceCommunicationService.sanitizeNotifText would have done if we'd reported false *if* conversion is disabled */ return true; } public int[] getSupportedDeviceSpecificSettings(GBDevice device) { Vector settings = new Vector(); settings.add(R.xml.devicesettings_banglejs); settings.add(R.xml.devicesettings_transliteration); settings.add(R.xml.devicesettings_high_mtu); if (BuildConfig.INTERNET_ACCESS) settings.add(R.xml.devicesettings_device_internet_access); settings.add(R.xml.devicesettings_device_intents); settings.add(R.xml.devicesettings_sync_calendar); // must be a better way of doing this? int[] settingsInt = new int[settings.size()]; for (int i=0; i