Skip to content

Tags: shmuelzon/esp32-ble2mqtt

Tags

v0.18.1

Release builds for other ESP32 variants

Closes #204

v0.18.0

Change Wi-Fi scan method

v0.17.0

Fix workflow

v0.16.0

Read and save BLE peripherals' names

v0.15.0

Add reset button to web interface

v0.14.0

Fix Eddystone URL decoding

Fixes #95

v0.13.0

Remove old leftovers auto-generated GATT UUIDs

The Bluetooth SIG kept changing their website describing the assigned GATT
services and characteristics UUIDs. Because of that I had to commit a static
version of the `gatt.inc` file instead of creating it during build so
compilation won't fail.

v0.12.0

Don't wait for ESP_GATTC_WRITE_DESCR_EVT

On some devices, when enabling notifications on the Services Changed
characteristics the ESP_GATTC_WRITE_DESCR_EVT event isn't received blocking the
BLE queue even though it was seen with a BLE sniffer that the peripheral did
respond to the write request.
As a workaround, we'll not wait for this event and simply dequeue the next
operation.

v0.11.0

Fixed compilation errors/warnings

Fixes #41

v0.10.0

Temporarily commit auto-generated code

The Bluetooth SIG has changed their website and have a few issues with the list
and definitions of the GATT services and characteristics. Until this is sorted
out I'm committing the auto-generated code and will revert this commit once the
site is working properly.

Fixes #31