017. Arduino 아두이노 - Bluetooth LE 모듈 AT 커맨드 사용해보기
구입한 BLE 모듈은 CC2451 칩을 사용한 모듈이라고 하네요 판매문의글 보면 HM-10 또는 CC2541 자료 참고하라고 써있더라구요 소스 #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 the character void setup() { Serial.begin(9600); Ser..
embedded/arduino
2016. 8. 26. 00:00