Gadgetbridge/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/DeviceSupport.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();
}