pjlink 0.1.1

A PJLink library that can be used to commmicate over the network with PJLink enabled devices such as a projector or display
Documentation

PJLink

This is a Rust library for the PJLink protocol. PJLink is a network control protocol that has been incorporated into projectors and displays over the last few years. You can find the protocol specification here. This Library currently supports both authenticated and open connections and currently returns unparsed response. This is just beginning of the API and more will be coming. However, I do plan to leave the raw send_command function for those that want to use this library at a lower level.

Testing has been done with Panasonic and Sanyo projectors.

Usage

Add to Cargo.toml:

[dependencies]

pjlink = "0.1.1"

Create a PjlinkDevice and start sending DMX data to a universe.

extern crate pjlink;
use pjlink::PjlinkDevice;

let mut device = PjlinkDevice::new("192.168.1.1").unwrap();

match device.send_command("POWR ?") {
    Ok(response) => println!("{}", response),
    Err(err) => println!("An error occurred: {}", err),
}

Examples

In the examples folder we have some sample programs that can be run using the folloing command from the project directory.

cargo run --example power_status -- 192.168.1.1 password

License

Licensed under

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.