nebulus 0.1.29

Low-latency native OpenIPC FPV ground station built with egui
1
2
3
4
5
6
7
8
9
#[cfg(not(target_arch = "wasm32"))]
mod native;
#[cfg(all(target_arch = "wasm32", target_os = "unknown"))]
mod web;

#[cfg(not(target_arch = "wasm32"))]
pub(crate) use native::AudioPlayer;
#[cfg(all(target_arch = "wasm32", target_os = "unknown"))]
pub(crate) use web::AudioPlayer;