본문 바로가기

아두이노우노 R4

Nano 33 IoT BLE Scanner 코드

반응형

 

 

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

 

 

참고 문서

BLE 개발 관련 내용 정리

 

 

 

 

 

 

반응형

더욱 좋은 정보를 제공하겠습니다.~ ^^