Client-side implementation of the Adafruit BLE file transfer protocol
Provides a client-side interface to interact with a device which exposes files with the Adafruit BLE file transfer protocol. The protocol is documented here: https://github.com/adafruit/Adafruit_CircuitPython_BLE_File_Transfer#protocol
This library is designed to enable you to bring your own bluetooth handler by implementing the
adafruit_ble_fs_client::device::Device
trait. Or you can use the implementations in the
adafruit_ble_fs_client::providers
module.
Example ```rust use adafruitblefsclient::AdafruitFileTransferClient; use adafruitblefsclient::providers::btleplug_provider::BtleplugDevice;
async fn main() {
let client = AdafruitFileTransferClient::