Function ev3dev_lang_rust::sound::beep_args
source · [−]pub fn beep_args<I, S>(args: I) -> Ev3Result<Child> where
I: IntoIterator<Item = S>,
S: AsRef<OsStr>, Expand description
Call beep command with the provided arguments.
See beep man page_ and google linux beep music_ for inspiration.
beep man page: https://linux.die.net/man/1/beeplinux beep music: https://www.google.com/search?q=linux+beep+music
Example
use ev3dev_lang_rust::sound;
sound::beep_args(&[""])?.wait()?;