| Crates.io | core_bluetooth |
| lib.rs | core_bluetooth |
| version | 0.1.0 |
| created_at | 2020-05-12 12:44:57.492308+00 |
| updated_at | 2020-05-12 12:44:57.492308+00 |
| description | Safe API wrapper for Core Bluetooth framework |
| homepage | |
| repository | https://github.com/pingw33n/rust_core_bluetooth |
| max_upload_size | |
| id | 240665 |
| size | 173,881 |
Safe wrapper around Core Bluetooth framework used to communicate with Bluetooth-equipped low energy (LE) and Basic Rate / Enhanced Data Rate (BR/EDR) wireless technology.
Currently only the central role is supported.
See example in the crate docs and also the examples directory.
By default MPSC rendezvous channel from std is used to perform native framework calls. With async_std_unstable
feature chis channel can be replaced with async_std::sync::channel making it possible to pump events in async context.
Note the async_std will need unstable feature enabled.