Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/benthillerkus/soundpad-rs
Libraries for interacting with Soundpad
https://github.com/benthillerkus/soundpad-rs
Last synced: 4 days ago
JSON representation
Libraries for interacting with Soundpad
- Host: GitHub
- URL: https://github.com/benthillerkus/soundpad-rs
- Owner: benthillerkus
- License: mit
- Created: 2022-11-29T04:46:46.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-05T15:56:25.000Z (7 months ago)
- Last Synced: 2024-04-24T05:45:38.931Z (7 months ago)
- Language: Java
- Homepage:
- Size: 142 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# soundpad-rs
> Libraries for interacting with Soundpad
## Usage
```rust
#[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
- [`soundpad-remote-client`](https://crates.io/crates/soundpad-remote-client)
- [`soundpad-xml`](https://crates.io/crates/soundpad-xml)
- [`soundpad-bumblebee`](https://crates.io/crates/soundpad-bumblebee)