gpt4 book ai didi

java - 安卓蓝牙连接错误

转载 作者:行者123 更新时间:2023-12-01 09:59:35 26 4
gpt4 key购买 nike

我正在开发一个蓝牙应用程序来控制 Arduino 板,但现在我犯了一些错误:当我尝试从手机建立连接时,它显示一个 AlertDialog (没关系)和很多 Toast(它们是从 onSensorChanged 调用的)。连接到开发板的 BT 模块正常(使用其他应用程序测试),所以问题是 Java:我无法连接到我的 BT 模块。不幸的是,Android Studio 没有给我任何 logcat 或错误。这是我的代码:

/* 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");
}
}
}

最佳答案

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

<强> https://github.com/omaflak/Bluetooth-Android

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

<强> https://causeyourestuck.io/2015/12/14/communication-between-android-and-hc-06-module/

祝你好运!

关于java - 安卓蓝牙连接错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36919697/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com