[ arduino ] Serial 블루투스 통신 - HC-06
작성일 21-01-22 16:55
페이지 정보
작성자 웹지기 조회 3,052회 댓글 0건본문
HC-06 모듈 ( 블루투스 모듈 ) - 배선연결
rx - 수신
tx - 송신
vcc - 5v
gnd - gnd
구글앱스토어 > arduino bluetooth controller 설치
설치후 블루투스를 연결 >> 연결후 다운받은 앱실행 >> 터미널모드 선택
SoftwareSerial mySerial(rx, tx); ( 핀이 2개만 존재하므로 반대로 받아야 한다 )
rx 핀번호가 11번이고, tx 핀번호가 10번이지만
rx쪽에 10 tx 쪽에 11을 입력해야 정보를 받아 올 수 있다.
SoftwareSerial mySerial(10, 11);
line ending 부분은 새줄로 해야 글이 스마트폰으로 전송이 가능하다
#include <SoftwareSerial.h>
SoftwareSerial mySerial(10, 11); // RX, TX
void setup() {
Serial.begin(9600);
mySerial.begin(9600);
}
void loop() { // run over and over
if (mySerial.available()) {
Serial.write(mySerial.read());
}
if (Serial.available()) {
mySerial.write(Serial.read());
}
}
추천0
비추천 0
댓글목록
등록된 댓글이 없습니다.