016. Arduino 아두이노 - Bluetooth 2.0 모듈 AT 커맨드 사용해보기
가지고 있는 Bluetooth 2.0 모듈 입니다 Bluetooth 를 이용하면 원격으로 아두이노를 제어 할 수 있습니다 스마트폰과 연동하면 되니까요 그 첫번째로 AT 명령을 보내 블루투스 이름, 비밀번호 등을 변경 할 수 있습니다 소스 #include SoftwareSerial softwareSerial(2, 3); // RX, TX int incomingByte = 0; // for incoming serial data char inData[20]; // Allocate some space for the string char inChar=-1; // Where to store the character read byte index = 0; // Index into array; where to store..
embedded/arduino
2016. 8. 24. 00:00