soundpad-xml

Crates.iosoundpad-xml
lib.rssoundpad-xml
version0.1.1
sourcesrc
created_at2022-12-06 03:30:00.507224
updated_at2022-12-06 17:10:19.715469
descriptionA library for deserializing Soundpad's XML files
homepage
repositoryhttps://github.com/benthillerkus/soundpad-rs
max_upload_size
id730822
size9,800
Bent Hillerkus (benthillerkus)

documentation

README

soundpad-rs

Libraries for interacting with Soundpad

Usage

#[tokio::main]
async fn main -> Result<()> {
  // Create a new API client
  let client = ClientBuilder::new().connect()?;
  // Retrieve a list with all available sounds from Soundpad
  let sounds = client.get_sound_list().await?;
  // Play the first sound
  client.play_sound(sounds[0])
}

Crates

Commit count: 52

cargo fmt