mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 02:21:14 +01:00
19 lines
462 B
Java
19 lines
462 B
Java
package nodomain.freeyourgadget.gadgetbridge;
|
|
|
|
import android.bluetooth.BluetoothAdapter;
|
|
import android.content.Context;
|
|
|
|
public interface DeviceSupport extends EventHandler {
|
|
public void initialize(GBDevice gbDevice, BluetoothAdapter btAdapter, Context context);
|
|
|
|
public boolean connect();
|
|
|
|
public GBDevice getDevice();
|
|
|
|
public BluetoothAdapter getBluetoothAdapter();
|
|
|
|
public Context getContext();
|
|
|
|
public void dispose();
|
|
}
|