corebluetooth-async 0.1.0

An asynchronous wrapper for the `corebluetooth` crate
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! An asynchronous wrapper for the `corebluetooth` crate.
//!
//! This crate provides `async` functions and streams for interacting with the CoreBluetooth
//! framework.
//!
//! See the `examples` directory for more complete usage examples.

mod central_manager;
pub mod error;
mod peripheral;
mod util;

pub use central_manager::*;
pub use corebluetooth::{
    Central, Characteristic, ConnectPeripheralOptions, Descriptor, L2capChannel, Service,
    advertisement_data, dispatch,
};
pub use peripheral::*;