기술문의 :)

기술문의 게시판 입니다.

뒤로가기
제목

connect가 안됩니다.

작성자 아트로봇(ip:)

작성일 2014-08-06 10:46:04

조회 45

평점 0점  

추천 추천하기

내용

안녕하세요

 

안드로이드 기기에서  블루투스 모뎀 검색은 되는지요?  그리고  페어링까지 완료되셨는지요?

 

안드로이드기기와의 커넥팅은  안드로이드 기기에서  장치 탐색후  페어링을 해주셔야 완료됩니다.

아래의 소스코드는 모뎀과 안드로이드기기간의 연결이라기보다는 아두이노와 블루투스 모뎀의 연결후 세팅을 한뒤  통신을 시작한다는 코드입니다.

 

더불어 블루투스 전원이 켜진후 일정시간내에만 CMD모드 진입이 허용됩니다.

전원인가후 오래 방치후 시리얼모니터 창을 여시면 CMD모드 진입이 안될수 있으므로

 

모뎀 전원이 켜진상태를 기준으로  일정시간 내에   시리얼모니터 창을 켜서 CMD 모든 진입이 되도록 해주셔야합니다.

 

 

아트로봇 드림

 


---------- Original Message ----------

 해당 블루투스를 연결을 다 하고 안드로이드와 통신을 시도하려고 해고 start의 빨간 불만 깜빡 거리고

connect의 녹색불은 깜빡이지 않습니다.


RX는 흰색선 TX는 검은색선 VCC는 초록색선 GND는 주황색선 입니다.


아래는 소스 코드 입니다.


#include

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("$");  // 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
  // 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());
  }
  // and loop forever and ever!
}




첨부파일

비밀번호
수정

비밀번호 입력후 수정 혹은 삭제해주세요.

댓글목록

등록된 댓글이 없습니다.

댓글 수정

이름

비밀번호

내용

/ byte

수정 취소

비밀번호 :

확인 취소

댓글 입력

이름

비밀번호

내용

/ byte

평점

왼쪽의 문자를 공백없이 입력하세요.

회원에게만 댓글 작성 권한이 있습니다.

관련 글 보기

follow us