ESP32 上的内置经典蓝牙相比低功耗蓝牙较为简单,可以和 Android 智能手机之间交换数据。下面是官方例程:
#include <Arduino.h>
#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
#endifBluetoothSerial SerialBT;void setup()
{Serial.begin(115200);SerialBT.begin("ESP32_01"); // 初始蓝牙名称Serial.println("The device started, now you can pair it with bluetooth!");
}void loop()
{if (Serial.available()){SerialBT.write(Serial.read()); // 蓝牙发送串口接收数据}if (SerialBT.available()){Serial.write(SerialBT.read()); // 串口发送蓝牙接收数据}delay(20);
}
烧录到 ESP32 开发板后,可以在手机端用蓝牙串口工具连接到 ESP32 蓝牙,然后相互通信。