This is an implementation of the Streaming ACN (ANSI E1.31) network protocol.
Currently only the sending part is implemented.
Add to Cargo.toml
:
```toml [dependencies]
sacn = "0.1" ```
Create a DmxSource and start sending DMX data to an universe.
```rust extern crate sacn; use sacn::DmxSource;
let mut dmx_source = DmxSource::new("Controller").unwrap();
dmx_source.send(1, &[0, 1, 2]); // ...
// terminate the stream for a specific universe dmxsource.terminatestream(1); ```
Licensed under either of
at your option.
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 dual licensed as above, without any additional terms or conditions.