android 6+如何连接wii平衡板?

时间:2017-01-03 20:29:40

标签: android bluetooth wiimote wii wii-balanceboard

基于Fitscales code,我制作了一个Android应用程序连接并使用Wii平衡板重新输入。 我的应用程序像SDK 15& amp; 16直到Android 4.4(KitKat),当Android停止了Wii的支持。 现在重新启用Wii支持,从Android 5.1.1开始。我还实现了获取蓝牙连接权限的新权限方案(包括ACCESS_COARSE_LOCATION)

我的问题是我无法再读取Wii平衡板输入。

我可以发现,创建套接字并在连接到套接字时收到消息:read failed, socket might closed or timeout, read ret: -1

到目前为止帮助我并且不再工作的答案:

Create wiimote socket

How to connect

一些代码:

private BluetoothSocket createBluetoothSocket(
        int type, int fd, boolean auth, boolean encrypt, String address, int port){
    try {
        Constructor<BluetoothSocket> constructor = BluetoothSocket.class.getDeclaredConstructor(
                int.class, int.class,boolean.class,boolean.class,String.class, int.class);
        constructor.setAccessible(true);
        BluetoothSocket clientSocket = constructor.newInstance(type,fd,auth,encrypt,address,port);
        return clientSocket;
    } catch (Exception e) {
        Log.v(TAG,"createBluetoothSocket failed: "+errorMsg(e));
        return null;
    }
}   


private connectWii(String MAC) {
    try {
        // MAC is the MAC address of Wiiboard
        int TYPE_L2CAP=3;
        sk = createBluetoothSocket(TYPE_L2CAP, -1, false,false, MAC, 0x13);
        // this fires read failed, socket might closed or timeout, read ret: -1
        sk.connect();
    } catch (Exception e) {
        Log.v(TAG,"Failed : "+errorMsg(e));
    }
}

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

值得查看此问题中的回复 - https://android.stackexchange.com/a/105285

似乎Android 4.1及更低版本提供了对L2CAP协议的访问,以连接到已从最新的Android版本中删除的蓝牙经典设备(大约2005年及更早版本)。