beep_args

Function 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.

ยงExample

use ev3dev_lang_rust::sound;

sound::beep_args(&[""])?.wait()?;