Bluetooth Bee+ARduino Uno,вопрос по Serial

Нет ответов
CyBerPunk
Offline
Зарегистрирован: 04.12.2012

доброго времени суток,имеется проблема:хочу создать блютуз чат между терминалами ардуино и компа

#include <SoftwareSerial.h>

int bluetoothTx = 45;
int bluetoothRx = 47;

SoftwareSerial bluetooth(bluetoothTx, bluetoothRx);

void setup()
{
  pinMode(53, OUTPUT);
  //Setup usb serial connection to computer
  Serial.begin(9600);

  //Setup Bluetooth serial connection
  bluetooth.begin(38400);
}

void loop()
{
  //Read from bluetooth and write to usb serial
  if(bluetooth.available())
  {
    char toSend = (char) bluetooth.read();
    Serial.print(toSend);
    flashLED();
  }

  //Read from usb serial to bluetooth
  if(Serial.available())
  {
    char toSend = (char)Serial.read();
    bluetooth.print(toSend);
    flashLED();
  }
}

void flashLED()
{
  digitalWrite(53, HIGH);
  delay(500);
  digitalWrite(53, LOW);
}

есть вот такой код,только проблема в том что с ЮСБ в блютуз приходит а в обратную сторону нет((менял боды как мог,в чем проблема?подскажите новичку...