yamaha_avr

Crates.ioyamaha_avr
lib.rsyamaha_avr
version0.2.0
sourcesrc
created_at2017-10-05 08:30:33.531128
updated_at2017-10-06 10:45:01.772861
descriptionA Library and CLI Tool for interaction with Yamaha AVRs
homepage
repositoryhttps://github.com/maxjoehnk/yamaha-avr-rs
max_upload_size
id34469
size58,960
Max (maxjoehnk)

documentation

README

yamaha-avr-rs

yamaha-avr-rs provides a Library and a CLI for interaction with Yamaha AVRs.

Library

Usage

Add this to your Cargo.toml:

[dependencies]
yamaha_avr = "0.2"

Next add this to your crate root:

extern crate yamaha_avr;

Now you are able to connect to your avr via

yamaha::connect("ip".to_owned()); // connect takes a String instead of a str

Soon you will also be able to discover your local AVRs via

yamaha::discover();

which will return a List of found Receivers.

CLI

Installation

Using cargo

Requires Rust

cargo install yamaha_avr

Usage

USAGE:
    yamaha-avr [OPTIONS] [SUBCOMMAND]

FLAGS:
    -h, --help       Prints help information
    -V, --version    Prints version information

OPTIONS:
        --ip <ip>    Set the AVR Ip

SUBCOMMANDS:
    help      Prints this message or the help of the given subcommand(s)
    inputs    Get available Inputs
    mute      Mute/Unmute
    power     Get/Set Power
    select    Select Input
    volume    Get/set the volume

Commit count: 27

cargo fmt