| Crates.io | yamaha_rs |
| lib.rs | yamaha_rs |
| version | 0.1.10 |
| created_at | 2025-11-18 22:55:38.971571+00 |
| updated_at | 2025-11-19 22:52:48.44022+00 |
| description | Yamaha Extended Control API in Rust |
| homepage | https://github.com/Kriannn/yamaha_rs |
| repository | https://github.com/Kriannn/yamaha_rs |
| max_upload_size | |
| id | 1939103 |
| size | 26,823 |
use yamaha_rs::discover_yamaha_devices;
fn main() {
// Automatically find all Yamaha devices on the network
let devices = discover_yamaha_devices();
// Display the IP and name of each device
for d in devices {
println!("{} {}", d.ip, d.name);
}
}