5502879a5b
This is very much still work in progress and much more will change before the final 2.0.0 Some APIs have changed. New libraries have been added. LittleFS included. Co-authored-by: Seon Rozenblum <seonr@3sprockets.com> Co-authored-by: Me No Dev <me-no-dev@users.noreply.github.com> Co-authored-by: geeksville <kevinh@geeksville.com> Co-authored-by: Mike Dunston <m_dunston@comcast.net> Co-authored-by: Unexpected Maker <seon@unexpectedmaker.com> Co-authored-by: Seon Rozenblum <seonr@3sprockets.com> Co-authored-by: microDev <70126934+microDev1@users.noreply.github.com> Co-authored-by: tobozo <tobozo@users.noreply.github.com> Co-authored-by: bobobo1618 <bobobo1618@users.noreply.github.com> Co-authored-by: lorol <lorolouis@gmail.com> Co-authored-by: geeksville <kevinh@geeksville.com> Co-authored-by: Limor "Ladyada" Fried <limor@ladyada.net> Co-authored-by: Sweety <switi.mhaiske@espressif.com> Co-authored-by: Loick MAHIEUX <loick111@gmail.com> Co-authored-by: Larry Bernstone <lbernstone@gmail.com> Co-authored-by: Valerii Koval <valeros@users.noreply.github.com> Co-authored-by: 快乐的我531 <2302004040@qq.com> Co-authored-by: chegewara <imperiaonline4@gmail.com> Co-authored-by: Clemens Kirchgatterer <clemens@1541.org> Co-authored-by: Aron Rubin <aronrubin@gmail.com> Co-authored-by: Pete Lewis <601236+lewispg228@users.noreply.github.com>
30 lines
829 B
C++
30 lines
829 B
C++
//This example code is in the Public Domain (or CC0 licensed, at your option.)
|
|
//By Evandro Copercini - 2018
|
|
//
|
|
//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(115200);
|
|
SerialBT.begin("ESP32test"); //Bluetooth device name
|
|
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);
|
|
}
|