ラップトップの Bluetooth デバイスから BlueSMiRF Bluetooth チップにデータを送信したいと考えています。これまで Bluetooth プログラミングを扱ったことがないので、開始方法と使用方法に関するガイダンスが必要です。私はJavaに取り組んでいますが、より良い代替手段があればそれに取り組みます。
1 に答える
これは古い投稿ですが、最近、arduino で bluetooth モジュールをセットアップし、Ubuntu で実行されている Java プログラムとインターフェイスする作業を行いました。そこで、私が役に立ったリンクをいくつか紹介しましょう。
デフォルトでは、BlueSMiRF bluetooth モジュールは SPP (Serial Port Protocol) モードで動作します。新しい SoftwareSerial ライブラリを使用して、Bluetooth 通信用の arduino コードを作成できます。このライブラリを使用すると、Bluetooth 経由でシリアル ポート経由でデータを送受信できます。http://arduino.cc/en/Reference/SoftwareSerial開始するための多くの例が利用可能です。
コンピュータで実行する Java プログラムには、RXTX ライブラリまたは java.comm ライブラリを使用できます。これは、RXTX ライブラリを使用したさまざまな例を含むリンクです: http://rxtx.qbang.org/wiki/index.php/Examples。RXTX ライブラリを使用すると、シリアル ポート経由でデータを送受信できます。
RXTXライブラリを使用してシリアルポート経由でデータを送信するJavaコード:(私はそれをテストしていません)
import gnu.io.CommPort;
import gnu.io.CommPortIdentifier;
import gnu.io.SerialPort;
import java.io.FileDescriptor;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
public class TwoWaySerialComm
{
public TwoWaySerialComm()
{
super();
}
void connect ( String portName ) throws Exception
{
CommPortIdentifier portIdentifier = CommPortIdentifier.getPortIdentifier(portName);
if ( portIdentifier.isCurrentlyOwned() )
{
System.out.println("Error: Port is currently in use");
}
else
{
CommPort commPort = portIdentifier.open(this.getClass().getName(),2000);
if ( commPort instanceof SerialPort )
{
SerialPort serialPort = (SerialPort) commPort;
serialPort.setSerialPortParams(57600,SerialPort.DATABITS_8,SerialPort.STOPBITS_1,SerialPort.PARITY_NONE);
//InputStream in = serialPort.getInputStream();
OutputStream out = serialPort.getOutputStream();
//(new Thread(new SerialReader(in))).start();
(new Thread(new SerialWriter(out))).start();
}
else
{
System.out.println("Error: Only serial ports are handled by this example.");
}
}
}
/** */
/*public static class SerialReader implements Runnable
{
InputStream in;
public SerialReader ( InputStream in )
{
this.in = in;
}
public void run ()
{
byte[] buffer = new byte[1024];
int len = -1;
try
{
while ( ( len = this.in.read(buffer)) > -1 )
{
System.out.print(new String(buffer,0,len));
}
}
catch ( IOException e )
{
e.printStackTrace();
}
}
}*/
/** */
public static class SerialWriter implements Runnable
{
OutputStream out;
public SerialWriter ( OutputStream out )
{
this.out = out;
}
public void run ()
{
try
{
int c = 0;
while ( ( c = System.in.read()) > -1 )
{
this.out.write(c);
}
}
catch ( IOException e )
{
e.printStackTrace();
}
}
}
public static void main ( String[] args )
{
try
{
(new TwoWaySerialComm()).connect("COM3");
}
catch ( Exception e )
{
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
データを受信するための対応するarduinoコード(これもテストされていません):
#include <SoftwareSerial.h>
int bluetoothTx = 2; // TX-O pin of bluetooth mate, Arduino D2
int bluetoothRx = 3; // RX-I pin of bluetooth mate, Arduino D3
SoftwareSerial bluetooth(bluetoothTx, bluetoothRx);
void setup()
{
Serial.begin(9600); // Begin the serial monitor at 9600bps
bluetooth.begin(115200); // The Bluetooth Mate defaults to 115200bps
bluetooth.print("$$$"); // Enter command mode
delay(100); // Short delay, wait for the Mate to send back CMD
bluetooth.println("U,9600,N"); // Temporarily Change the baudrate to 9600, no parity
// 115200 can be too fast at times for NewSoftSerial to relay the data reliably
bluetooth.begin(9600); // Start bluetooth serial at 9600
}
void loop()
{
if(bluetooth.available()) // If the bluetooth sent any characters
{
// Send any characters the bluetooth prints to the serial monitor
Serial.print((char)bluetooth.read());
}
/*if(Serial.available()) // If stuff was typed in the serial monitor
{
// Send any characters the Serial monitor prints to the bluetooth
bluetooth.print((char)Serial.read());
}*/
}