artnet_reciever

Crates.ioartnet_reciever
lib.rsartnet_reciever
version0.3.0
sourcesrc
created_at2023-05-10 13:09:46.959769
updated_at2023-05-11 19:26:42.528942
descriptionA simple artnet reciever based on the artnet_protocol crate
homepage
repositoryhttps://github.com/daveiator/artnet_reciever
max_upload_size
id861330
size18,154
David Bühler (daveiator)

documentation

README

artnet_reciever   Latest Release Documentation Build License

A simple artnet reciever based on the artnet_protocol crate

Usage

use artnet_reciever::ArtnetRecieverBuilder;

fn main() {
    let reciever = ArtnetRecieverBuilder::default().build().unwrap();
    for packet in reciever {
        println!("{:?}", packet);
    }
}
Commit count: 9

cargo fmt