mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 10:31:03 +01:00
17 lines
434 B
Java
17 lines
434 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();
|
||
|
}
|