btle 0.1.4

Lightweight Bluetooth Low Energy Drivers. WIP and very not stable yet!! Designed for https://github.com/AndrewGi/BluetoothMeshRust
Documentation
1
2
3
4
5
6
use crate::hci::adapters::DummyUnrecognizedEventHandler;

pub struct Central<A: crate::hci::adapter::Adapter> {
    pub hci_adapter: crate::hci::adapters::le::LEAdapter<A, DummyUnrecognizedEventHandler>,
}
impl<A: crate::hci::adapter::Adapter> Central<A> {}