정보나눔

오픈소스하드웨어 프로젝트에 대한 다양한 정보를 나누는 공간입니다.

고수님들 도와 주세요. 아두이노 나노 33 IOT 의 BLE 연결 문제 입니다.
가루밀 | 2023-02-23

아두이노 나노 33iot 의 ble 연결 때문에 고민하고 있습니다.
pc에 아두이노 스케치 프로그램 띄우고 USB 연결한 상태로는 스마트폰과 BLE 연결 잘 됩니다.

정확히는 스케치 프로그램의 시리얼 모니터를 실행하면 스마트폰에서 33보드를 인식합니다.

시리얼 모니터 실행하기 전에는 스마트폰에서 인식 못하더군요..

 

문제는 USB 제거하고 33보드에 5V1A 어댑터 연결해서 하면  스마트폰에서 33보드를 아예 검색하지 못합니다.

PC연결때 처럼 시리얼 모니터 실행 할수도 없고요.. 아두이노 보드의 리셋 버튼 눌러도 안됩니다.

 

코드는 스케치 프로그램의 예제로 테스트 하고 있습니다.

참고로 올려 드립니다

/*
  LED
 
  This example creates a Bluetooth® Low Energy peripheral with service that contains a
  characteristic to control an LED.
 
  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.
 
  You can use a generic Bluetooth® Low Energy central app, like LightBlue (iOS and Android) or
  nRF Connect (Android), to interact with the services and characteristics
  created in this sketch.
 
  This example code is in the public domain.
*/
 
#include <ArduinoBLE.h>
 
BLEService ledService("19B10000-E8F2-537E-4F6C-D104768A1214"); // Bluetooth® Low Energy LED Service
 
// Bluetooth® Low Energy LED Switch Characteristic - custom 128-bit UUID, read and writable by central
BLEByteCharacteristic switchCharacteristic("19B10001-E8F2-537E-4F6C-D104768A1214", BLERead | BLEWrite);
 
const int ledPin = LED_BUILTIN; // pin to use for the LED
 
void setup() {
  Serial.begin(9600);
  while (!Serial);
 
  // set LED pin to output mode
  pinMode(ledPin, OUTPUT);
 
  // begin initialization
  if (!BLE.begin()) {
    Serial.println("starting Bluetooth® Low Energy module failed!");
 
    while (1);
  }
 
  // set advertised local name and service UUID:
  BLE.setLocalName("LED");
  BLE.setAdvertisedService(ledService);
 
  // add the characteristic to the service
  ledService.addCharacteristic(switchCharacteristic);
 
  // add service
  BLE.addService(ledService);


 
  // set the initial value for the characeristic:
  switchCharacteristic.writeValue(0);
 
  // start advertising
  BLE.advertise();
 
  Serial.println("BLE LED Peripheral");
 
}
 
void loop() {
 
 
  // listen for Bluetooth® Low Energy peripherals to connect:
  BLEDevice central = BLE.central();
 
  // if a central is connected to peripheral:
  if (central) {
    Serial.print("Connected to central: ");
    // print the central's MAC address:
    Serial.println(central.address());
 
    // while the central is still connected to peripheral:
    while (central.connected()) {
      // if the remote device wrote to the characteristic,
      // use the value to control the LED:
      if (switchCharacteristic.written()) {
        if (switchCharacteristic.value()) {   // any value other than 0
          Serial.println("LED on");
          digitalWrite(ledPin, HIGH);         // will turn the LED on
        } else {                              // a 0 value
          Serial.println(F("LED off"));
          digitalWrite(ledPin, LOW);          // will turn the LED off
        }
      }
    }
 
    // when the central disconnects, print it out:
    Serial.print(F("Disconnected from central: "));
    Serial.println(central.address());
  }
}
이전글   |    블루투스 통신 값이 시리얼 모니터에 출력이 안됩니다.... 2023-01-12
다음글   |    아두이노 문의드리겠습니다.ㅠ 2023-03-09