rainmaker-components 0.1.0

Component abstractions for rainmaker
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod base;
pub use base::*;

mod wifi_esp;
mod wifi_linux;

#[cfg(target_os = "espidf")]
pub type WifiMgr<'a> =
    base::WifiMgr<esp_idf_svc::wifi::BlockingWifi<esp_idf_svc::wifi::EspWifi<'a>>>;

#[cfg(target_os = "linux")]
pub type WifiMgr<'a> = base::WifiMgr<()>;