pub fn beep_args<I, S>(args: I) -> Ev3Result<Child>
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()?;