esp32 经典蓝牙无法设置联接密码-Arduino中文社区 - Powered by Discuz! Archiver

13365336679 发表于 2022-5-4 23:42

esp32 经典蓝牙无法设置联接密码

#include <Arduino.h>
#include <BluetoothSerial.h>

BluetoothSerial SerialBT;

char *pin = "1124";
void setup()
{
    Serial.begin(115200);
    SerialBT.setPin(pin);   // 蓝牙连接的配对码
    SerialBT.begin("BAKUMA",true); // 如果没有参数传入则默认是蓝牙名称是: "ESP32"
    Serial.printf("BT initial ok and ready to pair. \r\n");
}

void loop()
{
    if (Serial.available())
    {
      SerialBT.write(Serial.read());
    }
    if (SerialBT.available())
    {
      Serial.write(SerialBT.read());
    }
    delay(1);
}



用手机连,没出现配对码,直接联通了。哪 的问题啊?
页: [1]
查看完整版本: esp32 经典蓝牙无法设置联接密码