当前位置: 首页 > 知识库问答 >
问题:

Android蓝牙连接错误

丌官运诚
2023-03-14

我正在开发一个蓝牙应用程序来控制Arduino板,但现在我犯了一些错误:当我试图从手机连接时,它会显示一个AlertDialog(没关系)和许多祝酒(它们是从onsensorchanged调用的)。BT模块连接到板子是可以的(测试与其他应用程序),所以问题是Java:我不能建立一个连接到我的BT模块。不幸的是,Android Studio没有给我任何日志或错误。这是我的代码:

/* imports... */
public class MainActivity extends AppCompatActivity implements SensorEventListener {

    /* Bluetooth */
    private static final int REQUEST_ENABLE_BT = 1;
    private String selectedDevice = "";
    static final UUID defaultUUID = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB");    //This SPP UUID should work for most devices.
    //private boolean isConnected = false;
    BluetoothAdapter bluetoothAdapter;
    BluetoothSocket bluetoothSocket;

    /* Is in full screen = ? */
    private boolean FullScreenState = true;

    /* Views */
    private SeekBar steeringWheel;
    private SeekBar forwardsSpeed;
    private SeekBar backwardsSpeed;
    private Toolbar toolbar;
    /* Dialogs */
    AlertDialog.Builder errorDialog;
    AlertDialog.Builder listDialog;
    ProgressDialog progressDialog;

    /* Accelerometer managers */
    Sensor accelerometer;
    SensorManager sensorManager;
    float Y = 0;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        (...)

        /* Views */
        steeringWheel = (SeekBar) findViewById(R.id.Steering_wheel);
        forwardsSpeed = (SeekBar) findViewById(R.id.Forwards_speed);
        backwardsSpeed = (SeekBar) findViewById(R.id.Backwards_speed);
        /* listDialogs */
        listDialog = new AlertDialog.Builder(this);
        listDialog.setCancelable(true);
        listDialog.setTitle(R.string.app_name);
        //listDialog.setMessage("Select a device:");
        listDialog.setIcon(R.drawable.launcher_icon);
        //listDialog.setView(devicesListView);
        listDialog.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {

            @Override
            public void onClick(DialogInterface dialog, int which) {
                dialog.dismiss();
            }
        });
        /* errorDialog */
        errorDialog = new AlertDialog.Builder(this);
        errorDialog.setCancelable(false);
        errorDialog.setTitle(R.string.app_name);
        errorDialog.setIcon(R.drawable.error_material);
        errorDialog.setPositiveButton("I got it", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
                dialog.dismiss();
            }
        });

        /* Set the full screen and keep the screen always on... */
        /* Accelerometer initializer... */
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        ...
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        ...
        if (id == R.id.toolbar_connect) {
            initializeBT();
            return true;

        } else if (id == R.id.toolbar_settings) {
            /* Settings activity. Coming soon. */
            return true;

        } else if (id == R.id.toolbar_disconnect) {
            if (bluetoothSocket != null) {
                try {
                    bluetoothSocket.close();

                } catch (IOException e) {
                    errorDialog.setMessage("Disconnection error!");
                    errorDialog.show();
                }
            }
            return true;
        }
    ...
    }

    @Override
    public void onSensorChanged(SensorEvent event) {
        /* Get the axes */
        Y = event.values[1];

        /* Set the steering wheel position */
        steeringWheel.setProgress((int)Y + 10);
        send(String.valueOf(steeringWheel.getProgress()));
    }

    @Override
    public void onAccuracyChanged(Sensor sensor, int accuracy) {
        ...
    }


    private class connect extends AsyncTask<Void, Void, Void> {

        private boolean connectionSuccess = false;

        @Override
        protected void onPreExecute() {
            progressDialog = ProgressDialog.show(MainActivity.this, "Connecting...", "Creating bluetooth connection");
        }

        @Override
        protected Void doInBackground(Void... devices) {
            try {
                if (bluetoothSocket == null) {
                //if ((bluetoothSocket == null) || (!isConnected)) {
                    bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
                    BluetoothDevice arduino = bluetoothAdapter.getRemoteDevice(selectedDevice);
                    bluetoothSocket = arduino.createInsecureRfcommSocketToServiceRecord(defaultUUID);
                    BluetoothAdapter.getDefaultAdapter().cancelDiscovery();
                    bluetoothSocket.connect();
                    connectionSuccess = true;
                }

            } catch (IOException e) {
                connectionSuccess = false;
            }
            return null;
        }

        @Override
        protected void onPostExecute(Void result) {
            super.onPostExecute(result);

            if (!connectionSuccess) {
                errorDialog.setMessage("Connection error!");
                errorDialog.show();

                bluetoothSocket = null;

            } else {
                Toast.makeText(getApplicationContext(), "Successfully connected", Toast.LENGTH_LONG).show();
                //isConnected = true;
            }

            progressDialog.dismiss();
        }
    }

    void initializeBT() {
        /* Check for Bluetooth support */
        bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();

        if (bluetoothAdapter == null) {
            errorDialog.setMessage("Unfortunately, Bluetooth connection isn't supported on your device.");
            errorDialog.show();

        } else if (!bluetoothAdapter.isEnabled()) {
            /* Bluetooth disables -> enable it */
            Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
            startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);

        } else {
            devicesPrompt();
        }
    }

    void devicesPrompt() {
        //final ArrayList<String> devicesList = new ArrayList()<String>;
        Set<BluetoothDevice> pairedDevices;
        final ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1);

        pairedDevices = bluetoothAdapter.getBondedDevices();
        if (pairedDevices.size() > 0) {
            for(BluetoothDevice bluetoothDevice : pairedDevices) {
                /* Get the device's name and the address */
                //devicesList.add(bt.getName() + "\n" + bt.getAddress());
                adapter.add(bluetoothDevice.getName() + "\n" + bluetoothDevice.getAddress());
            }

        } else {
            Toast.makeText(getApplicationContext(), "No paired Bluetooth devices found!", Toast.LENGTH_LONG).show();
        }

        listDialog.setAdapter(adapter, new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
                //Log.d("RoverBluetooth!!", String.valueOf(which));
                //;
                String info = adapter.getItem(which);
                selectedDevice = info.substring(info.length() - 17);
                new connect().execute();
                dialog.dismiss();
            }
        });

        listDialog.show();
    }

    public void send(String message) {
        message = message + "/r";
        if (bluetoothSocket != null) {
            try {
                bluetoothSocket.getOutputStream().write(message.getBytes());
            } catch (IOException e) {
                Toast.makeText(getApplicationContext(), "Error during sending", Toast.LENGTH_SHORT).show();
                Log.d("RoverBluetooth errors", e.toString());
            }
        }
    }

    public void buttonsActions(View view) {
        int viewId = view.getId();

        if (viewId == R.id.Forwards_button) {             //ON
            send(String.valueOf(forwardsSpeed.getProgress() + 1000));

        } else if (viewId == R.id.Stop_button) {         //OFF
            send("21");

        } else if (viewId == R.id.Backwards_button) {    //Backwards
            send(String.valueOf(backwardsSpeed.getProgress() + 1500));

        } else if (viewId == R.id.Light_ON) {            //Light ON
            send("22");

        } else if (viewId == R.id.Light_OFF) {           //Light OFF
            send("23");
        }
    }
}

共有1个答案

曹华荣
2023-03-14

我已经编写了一个类来在Android和Arduino之间建立蓝牙连接。我想你用的是HC-06(还是-05?)。我的代码在GitHub上:

https://github.com/omaflak/Bluetooth-Android

我在博客上也写了一个教程,你可能想看看:

 类似资料:
  • 问题内容: 我正在开发一个使用蓝牙连接到设备并发送/接收数据的应用程序。我正在使用Nexus One手机进行所有测试。 我从手机到任何设备都无法建立SPP(串行端口)连接。不过,我 已经 能够从一个设备(我的笔记本电脑)连接到使用Mac相当于腻子我的手机(唯一的例外是从市场上的“蓝牙文件传输”应用程序似乎是工作,但我不认为使用RFCOM / SPP …)。 我在LogCat日志中始终看到此消息:

  • 我如何获得Android所有已连接蓝牙设备的列表,而不考虑配置文件? 或者,我看到您可以通过BluetoothManager获取特定配置文件的所有连接设备。获取连接的设备。 我想我可以通过ACTION_ACL_CONNECTED/ACTION_ACL_DISCONNECTED监听连接/断开来查看哪些设备连接...似乎容易出错。 但我想知道是否有更简单的方法来获取所有已连接蓝牙设备的列表。

  • 我有一个android应用程序,它将所有配对的设备放在一个列表视图中。当您单击其中一个列表项时,它将发起连接到该蓝牙设备的请求。 我可以得到设备的列表和他们的地址没有问题。问题是,一旦我尝试连接,我会在socket.connect()上得到一个IOException; 错误消息如下:“连接读取失败,套接字可能关闭或超时,读取RET:-1” 请注意,在“尝试连接到设备”和“连接失败”之间有大约20秒

  • 嗨,我要开发一个应用程序,所以我有一个设备(服务器)与3个客户端。我做了所有的验证,打开蓝牙,找到设备,所有的工作都很好。但当我要连接一个设备时,我不知道会发生什么。 我正在使用下一个代码,当我单击一个我想连接它的设备时。我只有我的应用程序在母设备中。 这里我有一个问题,如果它没有配对会发生什么?如果我尝试连接,它会自动配对吗? 我的UUID是:“00001101-0000-1000-8000-0

  • Hy,我们正在通过蓝牙开发android多人游戏。这是一款多人LUDO游戏,其中4名玩家相互连接并进行游戏。 我们被困在第三和第四名球员的连接。 上面是建立连接的示例代码。但是在连接服务类中,我们有以下代码 当移动设备连接到第三个或第四个设备时,它返回myBSock==null。但是如果代码正常工作,它必须返回设备的地址,并且应该将mBtDeviceAddresses.add(设备);添加到服务器

  • 我想连接第三方蓝牙设备到我的Android Wear手表(三星Gear Live)。我试图找到留档如何做到这一点,但我没有任何运气。所有的搜索,我似乎都认为我想连接到手机上。 有谁知道一个很好的例子来演示如何将蓝牙心率监视器(或其他设备)连接到Android Wear,以便我在手机不存在时保存历史记录?这可能吗?它是否与从手机/平板电脑上执行相同的协议?