Simple BT to UART bridge
Posted: Sat May 20, 2017 10:57 am
Hi,
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 :
where uart0 is connected to PC through FTDI(usb to uart) and uart1 is connected to PC (or phone) via BT.
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());
}