9 unstable releases (3 breaking)

Uses old Rust 2015

0.4.4 Mar 23, 2018
0.4.3 Mar 23, 2018
0.3.0 Jan 10, 2018
0.2.0 Dec 2, 2017
0.1.0 Sep 13, 2015

#16 in #dmx

Download history 151/week @ 2023-12-18 493/week @ 2023-12-25 133/week @ 2024-01-08 1429/week @ 2024-01-15 183/week @ 2024-01-22 475/week @ 2024-01-29 294/week @ 2024-02-05 909/week @ 2024-02-12 427/week @ 2024-02-19 518/week @ 2024-02-26 138/week @ 2024-03-04 208/week @ 2024-03-11 374/week @ 2024-03-18 385/week @ 2024-03-25 257/week @ 2024-04-01

1,230 downloads per month

MIT/Apache

57KB
1K SLoC

Rust sACN implementation

Join the chat at https://gitter.im/rust_sacn/Lobby Build Status Crates.io

Documentation

This is an implementation of the Streaming ACN (ANSI E1.31) network protocol.

Currently only the sending DMX data is implemented.

Parsing of the sACN network packets is allocation free and can work in no_std environments.

Usage

Add to Cargo.toml:

[dependencies]

sacn = "0.4.4"

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

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
dmx_source.terminate_stream(1);

License

Licensed under either of

at your option.

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 dual licensed as above, without any additional terms or conditions.

Dependencies

~185–550KB