bleasy
High-level BLE communication library for Rust.
The goal of this library is to provide an easy-to-use interface for communicating with BLE devices, that satisfies most use cases.
Usage
Here is an example on how to find a device with battery level characteristic and read a value from that characteristic. For more examples, see the examples directory.
use BATTERY_LEVEL;
use ;
use StreamExt;
async
Background
At the time of writing this, there is only one cross-platform BLE library for Rust, btleplug. I have been using it for various personal projects for a while, but I found that I would like to have a bit higher-level library that makes it quick and easy start working with BLE devices, something akin to bleak for Python.
As this library in its current state uses btleplug, this can be seen as a sort of conveniency wrapper for it.