I have some experience with ESP8266 and HC-05. And I was kind of hoping to meet here any analog to this functionality. I have no idea what is HCI, Gatt, BT Classic, Bluedroid, etc, which are used in examples.
What will be really helpful (I guess for lots of ESP32 users) is to have some "getting started" example which will contain something like Arduino's software serial :
Code: Select all
if (uart0.available()) {
uart1.write(uart0.read());
}
if (uart1.available()) {
uart0.write(uart1.read());
}