Rust-for-Arduboy/arduboy-rust/src/libraries/arduboy_tones_library/mod.rs
2023-10-11 18:41:22 +02:00

8 lines
253 B
Rust

//!This is the Module to interact in a save way with the ArduboyTones C++ library.
//!
//! You will need to uncomment the ArduboyTones in the config.toml file.
#[doc(hidden)]
mod arduboy_tones;
pub mod tones_pitch;
pub use arduboy_tones::ArduboyTones;