Skip to content

Just a simple Java library to send ArtNet Dmx Packets on a network

License

Notifications You must be signed in to change notification settings

Mircodj/ArtNetLib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Java ArtNet Library

Constructor:

  • ArtNetLib(String socketIp): Constructor with the ip address of the socket.
    ArtNetLib artnet = new ArtNetLib("xxx.xxx.xxx.xxx");
    

Method:

  • sendArtDmxPacket(byte[] dmxChannelData, byte universe, byte subnet, byte net): Send a ArtDmx packet with the dmx data contained on a 512 elements byte array (Elements values from 0 to 255).
    byte[] data = new byte[512];
    ...
    artnet.sendArtDmxPacket(data, universe, subnet, net);
    

Releases

No releases published

Packages

No packages published

Languages