Как отправить строку через Bluetooth из Android-приложения Unity C # в Arduino? - PullRequest
0 голосов
/ 25 июня 2018

Когда я пытаюсь отправить свою строку и проверяю ее на arduino, она не пропустит ни одного оператора if.device.send () - это метод, который я использую из пакета ресурсов под названием Android & Microcontrollers / Bluetooth от Tech Tweaking.Как я могу отправить строку из моего приложения Unity C # для Android в arduino и передать операторы if?

Код Unity C #

device.send (System.Text.Encoding.ASCII.GetBytes("0,0"));

Код Arduino

#include <Wire.h>
#include <Adafruit_MotorShield.h>
Adafruit_MotorShield AFMS = Adafruit_MotorShield(); 
Adafruit_StepperMotor *myMotor = AFMS.getStepper(200, 2);

#include <SoftwareSerial.h>
SoftwareSerial Bluetooth(10, 9); // RX, TX
//int LED = 13; // the on-board LED


String Data; // the data received

int LED = 12; // LED on bread board

int height;
void setup() {
  Bluetooth.begin(38400);
  Serial.begin(38400);
  Serial.println("Waiting for command...");
  Bluetooth.println("Send 1 to turn on the LED. Send 0 to turn Off");
  pinMode(LED,OUTPUT);

  AFMS.begin();  // create with the default frequency 1.6KHz


  myMotor->setSpeed(100);  // 10 rpm   

  }

void loop() {
  if (Bluetooth.available()){ //wait for data received
  Data=Bluetooth.read();
if(Data == "0,1"){  
  digitalWrite(LED,1);
  Serial.println("LED On!");
  Bluetooth.println("LED On!");
  Serial.println("Single coil steps");
   myMotor->step(500, FORWARD, SINGLE); 

   }
else if(Data == "0,0"){
   digitalWrite(LED,0);
   Serial.println("LED Off!");
   Bluetooth.println("LED Off!");
   myMotor->step(500, BACKWARD, SINGLE); 
   }
else{;}


delay(100);
}

1 Ответ

0 голосов
/ 26 июня 2018

Я смог решить это.Имейте в виду, что я использую Unity Asset под названием Android & Microcontrollers / Bluetooth от Tech Tweaking, откуда и происходит device.send ().

C # код

device.send(System.Text.Encoding.ASCII.GetBytes ("0,1" + '\n'));

код Arduino

#include <SoftwareSerial.h>
SoftwareSerial Bluetooth(10, 9); // RX, TX
String data = "";
int LED = 12; 


void setup() {
  //Bluetooth module baud rate which I set using AT commands
  Bluetooth.begin(38400);
  //Serial baud rate which I use to communicate with the Serial Monitor in the Arduino IDE
  Serial.begin(9600);
  Serial.println("Waiting for command...");

  pinMode(LED,OUTPUT);
}

void loop() {

 if(Bluetooth.available() > 0) {
     data = Bluetooth.readStringUntil('\n');

     if (data == "0,1") {
         digitalWrite(LED,1);
         Serial.println("LED ON!"); 
 }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...