반응형
BLE Scanner 구현
아래 예제 코드는 Central device (Client)가 자신에게 정보를 줄 server를 찾기위해 scan하는 예제다.
- setup()문에서는 시리얼모니터 출력을 위한 Serial.begin()과 BLE 통신을 위한 BLE.begin()문이 있다.
- BLE.scan()이 호출되면 scan을 시작한다.
- BLE.available()는 인근에 advertising 중인 peripheral device를 발견했는지 확인해준다.
- loop()문에 정의된 print문들에 따라 여러 정보를 출력하게 된다. 이 예제에서는 주변 기기를 발견하더라도 따로 연결하지는 않고 그저 스캔만 주기적으로 계속 수행한다.
- 검출한 BLE 디바이스 기기의 MAC 주소와 이름 그리고 UUID를 알아낼 수 있다.
코드
/*
Scan
This example scans for Bluetooth® Low Energy peripherals and prints out their advertising details:
address, local name, advertised service UUID's.
The circuit:
- Arduino MKR WiFi 1010, Arduino Uno WiFi Rev2 board, Arduino Nano 33 IoT,
Arduino Nano 33 BLE, or Arduino Nano 33 BLE Sense board.
This example code is in the public domain.
*/
#include <ArduinoBLE.h>
void setup() {
Serial.begin(9600);
while (!Serial);
// begin initialization
if (!BLE.begin()) {
Serial.println("starting Bluetooth® Low Energy module failed!");
while (1);
}
Serial.println("Bluetooth® Low Energy Central scan");
// start scanning for peripheral
BLE.scan();
}
void loop() {
// check if a peripheral has been discovered
BLEDevice peripheral = BLE.available();
if (peripheral) {
// discovered a peripheral
Serial.println("Discovered a peripheral");
Serial.println("-----------------------");
// print address
Serial.print("Address: ");
Serial.println(peripheral.address());
// print the local name, if present
if (peripheral.hasLocalName()) {
Serial.print("Local Name: ");
Serial.println(peripheral.localName());
}
// print the advertised service UUIDs, if present
if (peripheral.hasAdvertisedServiceUuid()) {
Serial.print("Service UUIDs: ");
for (int i = 0; i < peripheral.advertisedServiceUuidCount(); i++) {
Serial.print(peripheral.advertisedServiceUuid(i));
Serial.print(" ");
}
Serial.println();
}
// print the RSSI
Serial.print("RSSI: ");
Serial.println(peripheral.rssi());
Serial.println();
}
}
코드 설명
- Central device (Client)가 자신에게 정보를 줄 server를 찾기위해 scan하는 예제다.
- setup()문에서는 시리얼모니터 출력을 위한 Serial.begin()과 BLE 통신을 위한 BLE.begin()문이 있다. 최대한 기존 arduino API와 형식을 비슷하게 맞춰주기 위한 노력이 보인다.
- BLE.scan()이 호출되면 scan을 시작한다.
- BLE.available()는 인근에 advertising 중인 peripheral device를 발견했는지 확인해준다. loop()문에 정의된 print문들에 따라 여러 정보를 출력하게 된다.
이 예제에서는 주변 기기를 발견하더라도 따로 연결하지는 않고 그저 스캔만 주기적으로 계속 수행한다. 스캔을 할 수 있다, 검출한 기기의 MAC 주소와 이름 그리고 UUID를 알아낼 수 있다.
실행 결과
Bluetooth® Low Energy Central scan
Discovered a peripheral
-----------------------
Address: 17:12:4b:c0:60:60
RSSI: -51
Discovered a peripheral
-----------------------
Address: 06:0e:3c:e2:3f:b1
Service UUIDs: fe78
RSSI: -39
Discovered a peripheral
-----------------------
Address: f3:7f:09:ad:6c:e2
Local Name: PuppyDoc
Service UUIDs: 180f fffa 090a 7070
RSSI: -72
참고 문서
반응형
'아두이노우노 R4' 카테고리의 다른 글
아두이노 우노 R4 Minima 4x4 16key 멤브레인 매트릭스 키패드 스위치 HAM2913 (1) | 2024.08.16 |
---|---|
TTP223B 터치 센서와 아두이노를 연동하는 방법 (1) | 2024.08.12 |
아두이노 나노 33 IoT 기반 NTP 세계 시계 사용 (1) | 2024.08.07 |
아두이노 푸시 버튼 - 전체 자습서 (1) | 2024.08.05 |
아두이노 나노, PM2008 미세먼지 SSD1306 Oled Display (1) | 2024.07.29 |
i2c 충돌나면 풀업저항 다는 게 제일 먼저 할 일 (1) | 2024.07.28 |
DS1302 아두이노 RTC 모듈 사용법 (2) | 2024.07.12 |
아두이노 0.96인치 OLED 디스플레이(SSD1306) 실습 (0) | 2024.07.04 |
더욱 좋은 정보를 제공하겠습니다.~ ^^