forked from h2zero/esp-nimble-cpp
Release v1.0.1
This commit is contained in:
25
CHANGELOG.md
Normal file
25
CHANGELOG.md
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [1.0.1] - 2020-09-02
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Empty `NimBLEAddress` constructor: `NimBLEAddress()` produces an address of 00:00:00:00:00:00 type 0.
|
||||||
|
- Documentation of the difference of NimBLEAddress::getNative vs the original bluedroid library.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- notify_callback typedef is now defined as std::function to enable the use of std::bind to call a class member function.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fix advertising start delay when first called.
|
||||||
|
|
||||||
|
|
||||||
|
## [1.0.0] - 2020-08-22
|
||||||
|
|
||||||
|
First stable release.
|
||||||
|
|
||||||
|
All the original library functionality is complete and many extras added with full documentation.
|
16
README.md
16
README.md
@ -1,3 +1,7 @@
|
|||||||
|
[Latest release 
|
||||||
|
](https://github.com/h2zero/esp-nimble-cpp/releases/latest/)
|
||||||
|
<br/>
|
||||||
|
|
||||||
# esp-nimble-cpp
|
# esp-nimble-cpp
|
||||||
|
|
||||||
NimBLE CPP library for use with ESP32 that attempts to maintain compatibility with the [nkolban cpp_uitls BLE API](https://github.com/nkolban/esp32-snippets/tree/master/cpp_utils).
|
NimBLE CPP library for use with ESP32 that attempts to maintain compatibility with the [nkolban cpp_uitls BLE API](https://github.com/nkolban/esp32-snippets/tree/master/cpp_utils).
|
||||||
@ -18,12 +22,6 @@ NimBLE is a completely open source Bluetooth Low Energy stack produced by [Apach
|
|||||||
It is more suited to resource constrained devices than bluedroid and has now been ported to the ESP32 by Espressif.
|
It is more suited to resource constrained devices than bluedroid and has now been ported to the ESP32 by Espressif.
|
||||||
<br/>
|
<br/>
|
||||||
|
|
||||||
# Development Status
|
|
||||||
[Latest release 
|
|
||||||
](https://github.com/h2zero/esp-nimble-cpp/releases/latest/)
|
|
||||||

|
|
||||||
<br/>
|
|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
|
|
||||||
### ESP-IDF v4.0+
|
### ESP-IDF v4.0+
|
||||||
@ -64,6 +62,8 @@ Also see [Improvements_and_updates](docs/Improvements_and_updates.md) for inform
|
|||||||
<br/>
|
<br/>
|
||||||
|
|
||||||
# Todo
|
# Todo
|
||||||
1. Implement random addresses.
|
- Improve host reset handler
|
||||||
2. Add BLE Mesh code.
|
- Implement random address handling
|
||||||
|
- Implement bond management
|
||||||
|
- Add Bluetooth Mesh
|
||||||
<br/>
|
<br/>
|
||||||
|
Reference in New Issue
Block a user