En mi proyecto tengo que leer códigos de barras utilizando el escáner de código de barras Símbolo CS3070 a través de bluetooth. es decir; Tengo que establecer una conexión entre el dispositivo Android y el escáner de código de barras a través de bluetooth. ¿Alguien puede decirme cómo leer los valores del lector de códigos de barras y cómo configurar la comunicación? Ya leí el Bluetooth Developer Guide, y no quiero usar el lector de código de barras en el modo de emulación de teclado Bluetooth (HID) (tengo una vista de texto que se puede completar con el teclado y el lector de código de barras y no puedo controlar el enfoque)Cómo leer datos del escáner de código de barras bluetooth Símbolo CS3070 a dispositivo Android
que haría uso de un hilo como este para comunicarse con un lector
private class BarcodeReaderThread extends Thread {
private final BluetoothServerSocket mmServerSocket;
public BarcodeReaderThread(UUID UUID_BLUETOOTH) {
// Use a temporary object that is later assigned to mmServerSocket,
// because mmServerSocket is final
BluetoothServerSocket tmp = null;
try {
// MY_UUID is the app's UUID string, also used by the client code
tmp = mBluetoothAdapter.listenUsingRfcommWithServiceRecord("BarcodeScannerForSGST", UUID_BLUETOOTH);
/*
* The UUID is also included in the SDP entry and will be the basis for the connection
* agreement with the client device. That is, when the client attempts to connect with this device,
* it will carry a UUID that uniquely identifies the service with which it wants to connect.
* These UUIDs must match in order for the connection to be accepted (in the next step)
*/
} catch (IOException e) { }
mmServerSocket = tmp;
}
public void run() {
BluetoothSocket socket = null;
// Keep listening until exception occurs or a socket is returned
while (true) {
try {
socket = mmServerSocket.accept();
try {
// If a connection was accepted
if (socket != null) {
// Do work to manage the connection (in a separate thread)
InputStream mmInStream = null;
// Get the input and output streams, using temp objects because
// member streams are final
mmInStream = socket.getInputStream();
byte[] buffer = new byte[1024]; // buffer store for the stream
int bytes; // bytes returned from read()
// Keep listening to the InputStream until an exception occurs
// Read from the InputStream
bytes = mmInStream.read(buffer);
if (bytes > 0) {
// Send the obtained bytes to the UI activity
String readMessage = new String(buffer, 0, bytes);
//doMainUIOp(BARCODE_READ, readMessage);
if (readMessage.length() > 0 && !etMlfb.isEnabled()) //Se sono nella parte di picking
new ServerWorker().execute(new Object[] {LEGGI_SPED, readMessage});
}
socket.close();
}
}
catch (Exception ex) { }
} catch (IOException e) {
break;
}
}
}
/**
* Will cancel the listening socket, and cause the thread to finish
*/
public void cancel() {
try {
mmServerSocket.close();
} catch (IOException e) { }
}
}
Gracias
Necesito la misma funcionalidad en mi aplicación, amablemente dígame si encuentra algo útil relacionado con esta tarea. –
También estoy tratando de lograr esto, hágamelo saber si encuentra una solución. Gracias. –
No hay soluciones por ahora ... – Android84