AndroidとArduinoをBluetooth接続したい
初心者です。いつもお世話になっております。
AndroidとArduinoをBluetooth接続したくて、
まずはAndroidアプリからArduinoへテキスト送信できるようにしようと
こちらのサイトを参考にプログラム、配線を試しました。(ArduinoStudio、AndroidIDEを使用しています)
しかし、
AndroidStudioやArduinoIDE上ではエラーはないのですが、Androidアプリ内の「connectボタン」を押すと、
エラーが表示され、テキスト送信もできないでいます。
(端末は、RN-42とBluetoothで接続できてはいます)
参考にしているサイトに書いてあることから、さらにどうすればうまくいくのか解りたいです。
AndroidアプリとArduinoをBluetoothで接続することに関して詳しいかたいらっしゃいましたら、
ご教授いただけると幸いです。
よろしくお願い申し上げます。
発生している問題・エラーメッセージ
下のエラーテキストが実機に表示されたエラー文です。
java.lang NullPointerException:Attempt to invoke virtual method 'android bluetooth.BlutetoothSocket android.bluetooth.Bluetooth Device.createRfcommSocket ToServiceRecrod(java.util.UUID)'on a null object reference
実機で表示されたエラー
CONNECTボタン押した後に
このように表示され、うまくいきません…
(端末は、RN-42とBluetoothで接続できてはいます)
該当のソースコード
念のため、記載します。
ArduinoStudioの、activity_main/xml、AndroidManifest.xmlもサイトを参考に記載しました。
ArduinoIDE
1#include <SoftwareSerial.h> 2 3SoftwareSerial android(2,3); 4 5void setup(){ 6 // Bluetooth用のシリアルのポートを設定 7 android.begin(115200); 8 // arduinoのシリアルモニタ用 9 Serial.begin(19200); 10 11 Serial.write("init"); 12} 13 14void loop(){ 15 16 if(android.available()){ 17 Serial.println(android.read()); 18 } 19 20 if(Serial.available()){ 21 android.write(Serial.read()); 22 } 23 24}
MainActivity
1package com.example.gcluemybluetooth; 2 3import android.bluetooth.BluetoothAdapter; 4import android.bluetooth.BluetoothDevice; 5import android.bluetooth.BluetoothSocket; 6import android.os.Bundle; 7import android.os.Handler; 8import android.os.Message; 9import android.util.Log; 10import android.view.View; 11import android.widget.Button; 12import android.widget.TextView; 13 14import androidx.appcompat.app.AppCompatActivity; 15 16import java.io.IOException; 17import java.io.InputStream; 18import java.io.OutputStream; 19import java.util.Set; 20import java.util.UUID; 21 22 23//public class MainActivity extends ActionBarActivity implements Runnable, View.OnClickListener { 24public class MainActivity extends AppCompatActivity implements Runnable, View.OnClickListener { 25 /* tag */ 26 private static final String TAG = "BluetoothSample"; 27 28 /* Bluetooth Adapter */ 29 private BluetoothAdapter mAdapter; 30 31 /* Bluetoothデバイス */ 32 private BluetoothDevice mDevice; 33 34 /* Bluetooth UUID */ 35 private final UUID MY_UUID = UUID.fromString("00001101-0000-1000-8000-00805F9B34FB"); 36 37 /* デバイス名 */ 38 private final String DEVICE_NAME = "RNBT-205F"; 39 40 /* Soket */ 41 private BluetoothSocket mSocket; 42 43 /* Thread */ 44 private Thread mThread; 45 46 /* Threadの状態を表す */ 47 private boolean isRunning; 48 49 /** 接続ボタン. */ 50 private Button connectButton; 51 52 /** LED ONボタン. */ 53 private Button ledOnButton; 54 55 /** LED OFFボタン. */ 56 private Button ledOffButton; 57 58 /** ステータス. */ 59 private TextView mStatusTextView; 60 61 /** Bluetoothから受信した値. */ 62 private TextView mInputTextView; 63 64 /** Action(ステータス表示). */ 65 private static final int VIEW_STATUS = 0; 66 67 /** Action(取得文字列). */ 68 private static final int VIEW_INPUT = 1; 69 70 /** BluetoothのOutputStream. */ 71 OutputStream mmOutputStream = null; 72 73 /** Connect状態確認用フラグ. */ 74 private boolean connectFlg = false; 75 76 @Override 77 public void onCreate(Bundle savedInstanceState){ 78 super.onCreate(savedInstanceState); 79 // Layoutにて設定したビューを表示 80 setContentView(R.layout.activity_main); 81 82 // TextViewの設定(Layoutにて設定したものを関連付け) 83 mInputTextView = (TextView)findViewById(R.id.inputValue); 84 mStatusTextView = (TextView)findViewById(R.id.statusValue); 85 86 // Buttonの設定(Layoutにて設定したものを関連付け) 87 connectButton = (Button)findViewById(R.id.connectButton); 88 ledOnButton = (Button)findViewById(R.id.ledOnButton); 89 ledOffButton = (Button)findViewById(R.id.ledOffButton); 90 91 // Buttonのイベント設定 92 connectButton.setOnClickListener(this); 93 ledOnButton.setOnClickListener(this); 94 ledOffButton.setOnClickListener(this); 95 96 // Bluetoothのデバイス名を取得 97 // デバイス名は、RNBT-XXXXになるため、 98 // DVICE_NAMEでデバイス名を定義 99 mAdapter = BluetoothAdapter.getDefaultAdapter(); 100 mStatusTextView.setText("SearchDevice"); 101 Set< BluetoothDevice > devices = mAdapter.getBondedDevices(); 102 for ( BluetoothDevice device : devices){ 103 104 if(device.getName().equals(DEVICE_NAME)){ 105 mStatusTextView.setText("find: " + device.getName()); 106 mDevice = device; 107 } 108 } 109 110 } 111 112 // 別のアクティビティが起動した場合の処理 113 @Override 114 protected void onPause(){ 115 super.onPause(); 116 117 isRunning = false; 118 connectFlg = false; 119 120 try{ 121 mSocket.close(); 122 } 123 catch(Exception e){} 124 } 125 126 // スレッド処理(connectボタン押下後に実行) 127 @Override 128 public void run() { 129 InputStream mmInStream = null; 130 131 Message valueMsg = new Message(); 132 valueMsg.what = VIEW_STATUS; 133 valueMsg.obj = "connecting..."; 134 mHandler.sendMessage(valueMsg); 135 136 try{ 137 // 取得したデバイス名を使ってBluetoothでSocket接続 138 mSocket = mDevice.createRfcommSocketToServiceRecord(MY_UUID); 139 mSocket.connect(); 140 mmInStream = mSocket.getInputStream(); 141 mmOutputStream = mSocket.getOutputStream(); 142 143 // InputStreamのバッファを格納 144 byte[] buffer = new byte[1024]; 145 146 // 取得したバッファのサイズを格納 147 int bytes; 148 valueMsg = new Message(); 149 valueMsg.what = VIEW_STATUS; 150 valueMsg.obj = "connected."; 151 mHandler.sendMessage(valueMsg); 152 153 connectFlg = true; 154 155 while(isRunning){ 156 157 // InputStreamの読み込み 158 bytes = mmInStream.read(buffer); 159 Log.i(TAG,"bytes="+bytes); 160 // String型に変換 161 String readMsg = new String(buffer, 0, bytes); 162 163 // null以外なら表示 164 if(readMsg.trim() != null && !readMsg.trim().equals("")){ 165 Log.i(TAG,"value="+readMsg.trim()); 166 167 valueMsg = new Message(); 168 valueMsg.what = VIEW_INPUT; 169 valueMsg.obj = readMsg; 170 mHandler.sendMessage(valueMsg); 171 } 172 } 173 174 } 175 // エラー処理 176 catch(Exception e){ 177 178 valueMsg = new Message(); 179 valueMsg.what = VIEW_STATUS; 180 valueMsg.obj = "Error1:" + e; 181 mHandler.sendMessage(valueMsg); 182 183 try{ 184 mSocket.close(); 185 }catch(Exception ee){} 186 isRunning = false; 187 connectFlg = false; 188 } 189 } 190 191 // ボタン押下時の処理 192 @Override 193 public void onClick(View v) { 194 // Connectボタン 195 if(v.equals(connectButton)) { 196 if(!connectFlg) { 197 198 mStatusTextView.setText("try connect"); 199 200 mThread = new Thread(this); 201 // Threadを起動し、Bluetooth接続 202 isRunning = true; 203 mThread.start(); 204 } 205 } 206 // ledOnボタン 207 else if(v.equals(ledOnButton)) { 208 if(connectFlg) { 209 try { 210 mmOutputStream.write("1".getBytes()); 211 mStatusTextView.setText("LED ON:"); 212 } catch (IOException e) { 213 Message valueMsg = new Message(); 214 valueMsg.what = VIEW_STATUS; 215 valueMsg.obj = "Error3:" + e; 216 mHandler.sendMessage(valueMsg); 217 } 218 } else { 219 mStatusTextView.setText("Please push the connect button"); 220 } 221 } 222 // ledOffボタン 223 else if(v.equals(ledOffButton)) { 224 if(connectFlg) { 225 try { 226 mmOutputStream.write("0".getBytes()); 227 mStatusTextView.setText("LED OFF:"); 228 } catch (IOException e) { 229 Message valueMsg = new Message(); 230 valueMsg.what = VIEW_STATUS; 231 valueMsg.obj = "Error4:" + e; 232 mHandler.sendMessage(valueMsg); 233 } 234 } else { 235 mStatusTextView.setText("Please push the connect button"); 236 } 237 } 238 } 239 240 /** 241 * 描画処理はHandlerでおこなう 242 */ 243 Handler mHandler = new Handler() { 244 @Override 245 public void handleMessage(Message msg) { 246 int action = msg.what; 247 String msgStr = (String)msg.obj; 248 if(action == VIEW_INPUT){ 249 mInputTextView.setText(msgStr); 250 } 251 else if(action == VIEW_STATUS){ 252 mStatusTextView.setText(msgStr); 253 } 254 } 255 }; 256}
配線
補足情報(FW/ツールのバージョンなど)
ーー開発環境ーー
MacOS.Catalina.10.15
ArduinoIDE1.8.10
AndroidStudio3.4.1
ーーAndroid端末ーー
Elephone P8 Mini(Android OS v7.0)
ーーArduinoなどーー
ArduinoUno
RN-42使用Bluetoothモジュール評価キット
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/01 04:28
2019/12/03 00:25 編集