rf24-rs 0.3.1

A pure-rust driver for the nRF24L01 wireless transceiver
Documentation
1
2
3
4
5
6
7
8
//! A module to encapsulate all things related to radio operation.
pub mod prelude;

mod rf24;
pub use rf24::{Nrf24Error, RF24};

mod config;
pub use config::RadioConfig;