BLE sensor advertisement library

crates.io page docs.rs page

A library for decoding sensor readings from BLE advertisements.

Currently supports:

The actual BLE scanning is up to you, so this library doesn't depend on any particular Bluetooth library or platform. It just provides types and functions to decode the data you give it.

Usage

```rust use std::collections::HashMap; use btsensor::{bthome, Reading};

// In a real program, this service data would be obtained from a BLE scan. let servicedata: HashMap> = [( bthome::v1::UNENCRYPTEDUUID, vec![0x23, 0x02, 0xC4, 0x09, 0x03, 0x03, 0xBF, 0x13], )] .into_iter() .collect();

let decoded = Reading::decode(&service_data).unwrap(); println!("{}", decoded); ```

For a more complete example, see the examples directory.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.