Arduino для Android Bluetooth: обнаружение, если оба подключены

Цель:

Чтобы ardiuno проверил, подключен ли он к андроиду через блютус. Затем выполнить действие, если оно подключено, или восстановить соединение, если оно не подключено.

Что я использую:

Bluesmirf silver с ардуино уно и нотой 3

Что я сделал до сих пор:

[КОД АРДУЙНО]

Bluesmirf находится в режиме автоматического подключения к мастеру. Предполагается, что Arduino проверяет, отправляет ли приложение Android символ H. Если это так, значит это связано. Если нет, то необходимо продолжать подключение.

#include <SoftwareSerial.h>  
#include <TextFinder.h>

int bluetoothTx = 2;  // TX-O pin of bluetooth mate, Arduino D2
int bluetoothRx = 3;  // RX-I pin of bluetooth mate, Arduino D3
boolean running = false;

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("$");           // Print three times individually
bluetooth.print("$");
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
delay(100);
bluetooth.begin(9600);          // Start bluetooth serial at 9600

}

void loop()
{


//Check If Connected

if(bluetooth.available())  // If the bluetooth sent any characters
{
  //Check if bluetooth recieved an H and store in a value
  char val = bluetooth.read();

  if(val == 'H')
  {
       running = true;
  }
  else if(val != 'H')
  {
       running = false;
  }
}
else if(!bluetooth.available())
{
   running = false;
}

//Actions to perform if arduino is connected or not connected

if(running == true)
{
//It's connected so wait 5 seconds
delay(5000);
}
else if(running == false)
{
//It's not connected: Attempt to reconnect
bluetooth.print("$");  // Print three times individually
bluetooth.print("$");
bluetooth.print("$");  // Enter command mode
delay(100);  // Short delay, wait for the Mate to send back CMD
bluetooth.println("C,30196692D7C0");
delay(500);
bluetooth.println("---"); 
delay(3000);

}
}

[Код Android]

И это метод приложения для Android, который отправляет H, когда приложение подключено.

private void sendMessage(BluetoothSocket socket, String msg) {
    OutputStream outStream;
    try {
        outStream = socket.getOutputStream();
        byte[] byteString = (msg).getBytes();
        outStream.write(byteString);
    } catch (IOException e) {
        Log.d("BLUETOOTH_COMMS", e.getMessage());
    }
}

Примечание:

Я пробовал так много вещей, чтобы заставить это Arduino проверить, подключен он или нет. Я только начал программировать 3 недели назад, так что это становится все труднее. Любая помощь будет оценена.

1 ответ

[ОБНОВЛЕНИЕ № 1]

Мне удалось отправить 'h' с приложением для Android с этим фрагментом здесь:

//call send method to send this character over bluetooth
sendMessage(socket,"h");

//Method used to send 'h' over bluetooth
    private void sendMessage(BluetoothSocket socket, String msg) {
        OutputStream outStream;
        try {
            outStream = socket.getOutputStream();
            //byte[] byteString = (msg).getBytes();
            byte[] byteString = stringToBytesUTFCustom(msg);
            outStream.write(byteString);
        } catch (IOException e) {
            Log.d("BLUETOOTH_COMMS", e.getMessage());
        }
    }

//Method used to convert
public byte[] stringToBytesUTFCustom(String str) {
    char[] buffer = str.toCharArray();
    byte[] b = new byte[buffer.length << 1];
    for (int i = 0; i < buffer.length; i++) {
        int bpos = i << 1;
        b[bpos] = (byte) ((buffer[i]&0xFF00)>>8);
        b[bpos + 1] = (byte) (buffer[i]&0x00FF);
    }
    return b;
}

А с помощью Arduino я могу правильно прочитать 'h', используя этот фрагмент.

  if (bluetooth.available() > 0) {  // if the data came
    char incomingByte = bluetooth.read(); // read byte
    if(incomingByte == 'h') {
       running = true;
  }
  }

Новая проблема

У меня возникли проблемы с сообщением, когда Arduino потерял связь с приложением для Android.

Другие вопросы по тегам