├── LICENSE.txt ├── README.md ├── examples ├── BleBufferedSerial │ └── BleBufferedSerial.ino ├── BleSerial_Bridge │ └── BleSerial_Bridge.ino ├── BleSerial_Callback │ └── bleserial_callback.ino ├── BleSerial_Hello │ └── bleserial_hello.ino └── BleSerial_Multiple │ └── bleserial_multiple.ino ├── library.properties └── src ├── BleBatteryService.cpp ├── BleBatteryService.h ├── BleBufferedSerial.cpp ├── BleBufferedSerial.h ├── BleSerial.cpp ├── BleSerial.h ├── BleSerialConstants.h ├── BleSerialServer.cpp ├── BleSerialServer.h └── ByteRingBuffer.h /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinabmalla/ESP32_BleSerial/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinabmalla/ESP32_BleSerial/HEAD/README.md -------------------------------------------------------------------------------- /examples/BleBufferedSerial/BleBufferedSerial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinabmalla/ESP32_BleSerial/HEAD/examples/BleBufferedSerial/BleBufferedSerial.ino -------------------------------------------------------------------------------- /examples/BleSerial_Bridge/BleSerial_Bridge.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinabmalla/ESP32_BleSerial/HEAD/examples/BleSerial_Bridge/BleSerial_Bridge.ino -------------------------------------------------------------------------------- /examples/BleSerial_Callback/bleserial_callback.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinabmalla/ESP32_BleSerial/HEAD/examples/BleSerial_Callback/bleserial_callback.ino -------------------------------------------------------------------------------- /examples/BleSerial_Hello/bleserial_hello.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinabmalla/ESP32_BleSerial/HEAD/examples/BleSerial_Hello/bleserial_hello.ino -------------------------------------------------------------------------------- /examples/BleSerial_Multiple/bleserial_multiple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinabmalla/ESP32_BleSerial/HEAD/examples/BleSerial_Multiple/bleserial_multiple.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinabmalla/ESP32_BleSerial/HEAD/library.properties -------------------------------------------------------------------------------- /src/BleBatteryService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinabmalla/ESP32_BleSerial/HEAD/src/BleBatteryService.cpp -------------------------------------------------------------------------------- /src/BleBatteryService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinabmalla/ESP32_BleSerial/HEAD/src/BleBatteryService.h -------------------------------------------------------------------------------- /src/BleBufferedSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinabmalla/ESP32_BleSerial/HEAD/src/BleBufferedSerial.cpp -------------------------------------------------------------------------------- /src/BleBufferedSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinabmalla/ESP32_BleSerial/HEAD/src/BleBufferedSerial.h -------------------------------------------------------------------------------- /src/BleSerial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinabmalla/ESP32_BleSerial/HEAD/src/BleSerial.cpp -------------------------------------------------------------------------------- /src/BleSerial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinabmalla/ESP32_BleSerial/HEAD/src/BleSerial.h -------------------------------------------------------------------------------- /src/BleSerialConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinabmalla/ESP32_BleSerial/HEAD/src/BleSerialConstants.h -------------------------------------------------------------------------------- /src/BleSerialServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinabmalla/ESP32_BleSerial/HEAD/src/BleSerialServer.cpp -------------------------------------------------------------------------------- /src/BleSerialServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinabmalla/ESP32_BleSerial/HEAD/src/BleSerialServer.h -------------------------------------------------------------------------------- /src/ByteRingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinabmalla/ESP32_BleSerial/HEAD/src/ByteRingBuffer.h --------------------------------------------------------------------------------