3

私の質問を見てくれてありがとう。ArduinoでRN42またはHC05 Bluetoothモジュールを使用してBluetoothアプリケーションを開発しました。これは、Play ストアに掲載したいと考えているアプリケーションになります。アプリケーションは、Acer Iconia B1 (使用したいタブレット) を除いて、私が確認したほとんどのタブレットで正常に動作するようです。

logCat から取得したエラーは次のとおりです。

03-08 21:35:10.972: I/BluetoothSocket_MTK(2712): [JSR82] Bluetooth Socket Constructor
03-08 21:35:10.972: I/BluetoothSocket_MTK(2712): [JSR82] type=1 fd=-1 auth=false encrypt=false port=1
03-08 21:35:10.973: D/ActivityThread(1708): BDC-Calling finishReceiver: IIntentReceiver=41441d20
03-08 21:35:10.974: D/BTSocketService(402): [JSR82][Service] initSocket
03-08 21:35:10.974: I/BluetoothSocketService.cpp(402): [JSR82][JNI] initSocketNative +++.
03-08 21:35:10.974: I/BluetoothSocketService.cpp(402): [JSR82][JNI] initSocketNative: start to initialize socket.
03-08 21:35:10.975: I/BluetoothSocketService.cpp(402): [JSR82][JNI] type=1, auth=0, encrypt=0, port=1
03-08 21:35:10.975: I/BluetoothSocketService.cpp(402): [JSR82][JNI] initSocketNative: Initialize socket done.
03-08 21:35:10.975: E/BluetoothSocketService.cpp(402): [JSR82][JNI] No free context space; the APP has registered 20 services.
03-08 21:35:10.975: I/BluetoothSocketService.cpp(402): [JSR82][JNI] initSocketNative ---. fdHandle=0
03-08 21:35:10.975: D/Bluetooth(2712): ++++ Connecting to 00:12:05:22:95:84
03-08 21:35:10.975: D/BTSocketService(402): [JSR82][Service] connect
03-08 21:35:10.975: I/BluetoothSocketService.cpp(402): [JSR82][JNI] connectNative +++. fd=0.
03-08 21:35:10.975: E/BluetoothSocketService.cpp(402): [JSR82][JNI] connectNative: The FD (0) doesn't exist.
03-08 21:35:10.976: W/System.err(2712): java.io.IOException: [JSR82] connect: Connection is not created (failed or aborted).
03-08 21:35:10.976: W/System.err(2712):     at android.bluetooth.BluetoothSocket.connect(BluetoothSocket.java:395)
03-08 21:35:10.976: W/System.err(2712):     at com.test.BluetoothConnection.connectBluetooth(BluetoothConnection.java:100)
03-08 21:35:10.977: W/System.err(2712):     at com.test.BluetoothCounter$1.run(BluetoothCounter.java:64)
03-08 21:35:10.977: W/System.err(2712):     at java.lang.Thread.run(Thread.java:856)
03-08 21:35:10.977: D/dalvikvm(2712): threadid=13: exiting
03-08 21:35:10.977: D/dalvikvm(2712): threadid=13: bye!

ブルートゥースを初期化するための私のコード:

   public boolean connectBluetooth() throws Exception, Exception{
        BT = BluetoothAdapter.getDefaultAdapter().getRemoteDevice(MacAddress);
        m = BT.getClass().getMethod("createInsecureRfcommSocket", new Class[] { int.class });
        mBluetoothAdapter.enable();
        sock = (BluetoothSocket) m.invoke(BT, 1);
        Log.d("Bluetooth", "++++ Connecting to " + MacAddress);
        sock.connect();
        Log.d("Bluetooth", "++++ Connected");
        connected = true;
        in = sock.getInputStream();
        return true;
    }

私はあなたの助けに感謝します!

4

1 に答える 1