Rust-for-Arduboy/arduboy-rust/src/libraries/arduboy_tones_library/mod.rs

9 lines
253 B
Rust
Raw Normal View History

2023-10-11 14:55:18 +02:00
//!This is the Module to interact in a save way with the ArduboyTones C++ library.
//!
2023-10-11 18:41:22 +02:00
//! You will need to uncomment the ArduboyTones in the config.toml file.
2023-10-11 14:55:18 +02:00
#[doc(hidden)]
mod arduboy_tones;
pub mod tones_pitch;
pub use arduboy_tones::ArduboyTones;