1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//! Contains the [ArtCommand](struct.ArtCommand.html) enum which holds the entire ArtNet protocol v4, as per [https://artisticlicence.com/WebSiteMaster/User%20Guides/art-net.pdf](https://artisticlicence.com/WebSiteMaster/User%20Guides/art-net.pdf)
//!
//! ```rust,no_run
//! use artnet_protocol::*;
//! use std::net::{UdpSocket, ToSocketAddrs};
//!
//! let socket = UdpSocket::bind(("0.0.0.0", 6454)).unwrap();
//! let broadcast_addr = ("255.255.255.255", 6454).to_socket_addrs().unwrap().next().unwrap();
//! socket.set_broadcast(true).unwrap();
//! let buff = ArtCommand::Poll(Poll::default()).write_to_buffer().unwrap();
//! socket.send_to(&buff, &broadcast_addr).unwrap();
//!
//! loop {
//! let mut buffer = [0u8; 1024];
//! let (length, addr) = socket.recv_from(&mut buffer).unwrap();
//! let command = ArtCommand::from_buffer(&buffer[..length]).unwrap();
//!
//! println!("Received {:?}", command);
//! match command {
//! ArtCommand::Poll(poll) => {
//! // This will most likely be our own poll request, as this is broadcast to all devices on the network
//! },
//! ArtCommand::PollReply(reply) => {
//! // This is an ArtNet node on the network. We can send commands to it like this:
//! let command = ArtCommand::Output(Output {
//! data: vec![1, 2, 3, 4, 5].into(), // The data we're sending to the node
//! ..Output::default()
//! });
//! let bytes = command.write_to_buffer().unwrap();
//! socket.send_to(&bytes, &addr).unwrap();
//! },
//! _ => {}
//! }
//! }
//! ```
/// Re-export of the bitflags crate that this library uses
pub extern crate bitflags;
/// Re-export of the byteorder crate that this library uses
pub extern crate byteorder;
pub use crate*;
pub use crate ArtTalkToMe;
pub use crate*;
pub use PortAddress;