web-dev-qa-db-ja.com

Android bluetoothを使用してシリアルデータを受信する方法

私はAndroidが初めてです。 Bluetoothを介してハードウェアデバイスからシリアルデータを受信するAndroidアプリケーションを設計しています。Htcdesire Sに取り組んでいます。データを受信するためにサンプルBluetoothチャットコードを使用しました。いくつかの値がありません。Bluetoothを介して大量のデータを受信し、ファイルに保存する他のサンプルコードを教えてください。

35
Khushboo

このコードを試してください:

アクティビティ:

package Android.Arduino.Bluetooth;
import Android.app.Activity;
import Android.bluetooth.BluetoothAdapter;
import Android.bluetooth.BluetoothDevice;
import Android.bluetooth.BluetoothSocket;
import Android.content.Intent;
import Android.os.Bundle;
import Android.os.Handler;
import Android.view.View;
import Android.widget.TextView;
import Android.widget.EditText;  
import Android.widget.Button;
import Java.io.IOException;
import Java.io.InputStream;
import Java.io.OutputStream;
import Java.util.Set;
import Java.util.UUID;

public class MainActivity extends Activity
{
TextView myLabel;
EditText myTextbox;
BluetoothAdapter mBluetoothAdapter;
BluetoothSocket mmSocket;
BluetoothDevice mmDevice;
OutputStream mmOutputStream;
InputStream mmInputStream;
Thread workerThread;
byte[] readBuffer;
int readBufferPosition;
int counter;
volatile boolean stopWorker;

@Override
public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    Button openButton = (Button)findViewById(R.id.open);
    Button sendButton = (Button)findViewById(R.id.send);
    Button closeButton = (Button)findViewById(R.id.close);
    myLabel = (TextView)findViewById(R.id.label);
    myTextbox = (EditText)findViewById(R.id.entry);

    //Open Button
    openButton.setOnClickListener(new View.OnClickListener()
    {
        public void onClick(View v)
        {
            try 
            {
                findBT();
                openBT();
            }
            catch (IOException ex) { }
        }
    });

    //Send Button
    sendButton.setOnClickListener(new View.OnClickListener()
    {
        public void onClick(View v)
        {
            try 
            {
                sendData();
            }
            catch (IOException ex) { }
        }
    });

    //Close button
    closeButton.setOnClickListener(new View.OnClickListener()
    {
        public void onClick(View v)
        {
            try 
            {
                closeBT();
            }
            catch (IOException ex) { }
        }
    });
}

void findBT()
{
    mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
    if(mBluetoothAdapter == null)
    {
        myLabel.setText("No bluetooth adapter available");
    }

    if(!mBluetoothAdapter.isEnabled())
    {
        Intent enableBluetooth = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
        startActivityForResult(enableBluetooth, 0);
    }

    Set<BluetoothDevice> pairedDevices = mBluetoothAdapter.getBondedDevices();
    if(pairedDevices.size() > 0)
    {
        for(BluetoothDevice device : pairedDevices)
        {
            if(device.getName().equals("MattsBlueTooth")) 
            {
                mmDevice = device;
                break;
            }
        }
    }
    myLabel.setText("Bluetooth Device Found");
}

void openBT() throws IOException
{
    UUID uuid = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB"); //Standard SerialPortService ID
    mmSocket = mmDevice.createRfcommSocketToServiceRecord(uuid);        
    mmSocket.connect();
    mmOutputStream = mmSocket.getOutputStream();
    mmInputStream = mmSocket.getInputStream();

    beginListenForData();

    myLabel.setText("Bluetooth Opened");
}

void beginListenForData()
{
    final Handler handler = new Handler(); 
    final byte delimiter = 10; //This is the ASCII code for a newline character

    stopWorker = false;
    readBufferPosition = 0;
    readBuffer = new byte[1024];
    workerThread = new Thread(new Runnable()
    {
        public void run()
        {                
           while(!Thread.currentThread().isInterrupted() && !stopWorker)
           {
                try 
                {
                    int bytesAvailable = mmInputStream.available();                        
                    if(bytesAvailable > 0)
                    {
                        byte[] packetBytes = new byte[bytesAvailable];
                        mmInputStream.read(packetBytes);
                        for(int i=0;i<bytesAvailable;i++)
                        {
                            byte b = packetBytes[i];
                            if(b == delimiter)
                            {
     byte[] encodedBytes = new byte[readBufferPosition];
     System.arraycopy(readBuffer, 0, encodedBytes, 0, encodedBytes.length);
     final String data = new String(encodedBytes, "US-ASCII");
     readBufferPosition = 0;

                                handler.post(new Runnable()
                                {
                                    public void run()
                                    {
                                        myLabel.setText(data);
                                    }
                                });
                            }
                            else
                            {
                                readBuffer[readBufferPosition++] = b;
                            }
                        }
                    }
                } 
                catch (IOException ex) 
                {
                    stopWorker = true;
                }
           }
        }
    });

    workerThread.start();
}

void sendData() throws IOException
{
    String msg = myTextbox.getText().toString();
    msg += "\n";
    mmOutputStream.write(msg.getBytes());
    myLabel.setText("Data Sent");
}

void closeBT() throws IOException
{
    stopWorker = true;
    mmOutputStream.close();
    mmInputStream.close();
    mmSocket.close();
    myLabel.setText("Bluetooth Closed");
}
}

そして、ここでレイアウト:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:tools="http://schemas.Android.com/tools"
Android:layout_width="fill_parent"
Android:layout_height="fill_parent"
tools:ignore="TextFields,HardcodedText" >

<TextView
    Android:id="@+id/label"
    Android:layout_width="fill_parent"
    Android:layout_height="wrap_content"
    Android:text="Type here:" />

<EditText
    Android:id="@+id/entry"
    Android:layout_width="fill_parent"
    Android:layout_height="wrap_content"
    Android:layout_below="@id/label"
    Android:background="@Android:drawable/editbox_background" />

<Button
    Android:id="@+id/open"
    Android:layout_width="wrap_content"
    Android:layout_height="wrap_content"
    Android:layout_alignParentRight="true"
    Android:layout_below="@id/entry"
    Android:layout_marginLeft="10dip"
    Android:text="Open" />

<Button
    Android:id="@+id/send"
    Android:layout_width="wrap_content"
    Android:layout_height="wrap_content"
    Android:layout_alignTop="@id/open"
    Android:layout_toLeftOf="@id/open"
    Android:text="Send" />

<Button
    Android:id="@+id/close"
    Android:layout_width="wrap_content"
    Android:layout_height="wrap_content"
    Android:layout_alignTop="@id/send"
    Android:layout_toLeftOf="@id/send"
    Android:text="Close" />

マニフェストの場合:アプリケーションに追加

// permission must be enabled complete
<manifest ....>

    <uses-permission Android:name="Android.permission.BLUETOOTH_ADMIN" />
    <uses-permission Android:name="Android.permission.BLUETOOTH" />
    <application>


    </application>
</manifest>
77
Majdi_la

PC(MATLAB)から携帯電話に連続データ(文字列に変換された浮動小数点値)を送信するためにこれを試しました。しかし、それでも私のアプリは区切り文字 '\ n'を誤読し、それでもデータが文字化けします。だから、文字「N」を「\ n」ではなく区切り文字として使用しました(データの一部として発生しない任意の文字にすることができます)、より良い伝送速度を達成しました-わずか0.1秒の遅延を与えました連続したサンプルの送信-受信側で99%を超えるデータ整合性、つまり、送信した2000個のサンプル(浮動小数点値)のうち、10個のみがアプリケーションで正しくデコードされませんでした。

簡単に言えば、「\ r」または「\ n」以外の区切り文字を選択してください。これらは、私が使用したような他の文字と比較した場合、リアルタイムのデータ送信により多くの問題を引き起こすからです。もっと働けば、伝送速度をさらに上げることができるかもしれません。私の答えが誰かを助けることを願っています!

5
nrenga

Null接続の問題は、findBT()関数に関連しています。デバイス名を「MattsBlueTooth」からデバイス名に変更し、サービス/デバイスのUUIDを確認する必要があります。 BLEScannerアプリのようなものを使用して、Androidで両方を確認します。

4

信じられないほどの Bluetoothシリアル 私をとても助けてくれたonResume()能力を持つクラスを見てください。これが役立つことを願っています;)

1