처음으로 아두이노 UNO말고 ESP32를 이용해보았어요 안드로이드와 bluetooth로 데이터를 주고 받는 작업을 해야해서 BT기능을 제공하는 esp32로 구현했습니다 아두이노 IDE에서 파일 > 예제 > BluetoothSerial에 들어가면 다양한 예제를 볼 수 있어요 #include "BluetoothSerial.h" #if !defined(CONFIG_BT_ENABLED) || !defined(CONFIG_BLUEDROID_ENABLED) #error Bluetooth is not enabled! Please run `make menuconfig` to and enable it #endif #if !defined(CONFIG_BT_SPP_ENABLED) #error Serial Bluetooth ..