安卓 6+ 如何连接 wii 平衡板



我制作了一个Android应用程序,它基于Fitscales代码,使用Wii平衡板连接并读取输入。我的应用程序在SDK 15和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

到目前为止对我有帮助并且不再起作用的答案:

创建 wiimote 套接字

如何连接

一些代码:

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));
    }
}

提前感谢您的帮助。

值得看看这个问题的回答 - https://android.stackexchange.com/a/105285

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

相关内容

  • 没有找到相关文章

最新更新