Bluetooth classic 用蓝牙交换信息

零知ESP32带有Wi-Fi,低功耗蓝牙和经典蓝牙。 在这个示例中将向展示如何将Bluetooth Classic与零知ESP32和零知开发工具结合使用在设备之间交换数据。

一、软件和硬件

硬件我们本次使用零知-ESP32

软件:零知开发工具和 手机APP(安卓):Serial Bluetooth Terminal

APP安卓包下载:de_kai_morich_serial_bluetooth_terminal_1.28_08_03_2019.zip(点击下载)


二、方法步骤

将零知ESP32开发板连接到USB,打开零知开发工具,新建项目,复制下面的代码。


							
	//This example creates a bridge between Serial and Classical Bluetooth (SPP)
	//and also demonstrate that SerialBT have the same functionalities of a normal Serial
	 
	#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
	 
	BluetoothSerial SerialBT;
	 
	void setup() {
	  Serial.begin(9600);
	  SerialBT.begin("ESP32test"); //Bluetooth device name
	        Serial.println();
	  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开发板,然后验证程序并上传到开发板,打开调试窗口,如下图:

开启手机蓝牙,并打开Serial Bluetooth Terminal:

选择设备ESP32test

然后可以看的连接成功的信息

此时在输入框内输入任意信息,比如

可以在调试窗口看到接收的信息:

在发送窗口写入一些信息发送给手机:

在手机上接收到信息,与零知ESP32通信成功。