Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 638 Bytes

File metadata and controls

24 lines (17 loc) · 638 Bytes

ArtNet 3 .NET

Simple ArtNet 3 Implementation for .NET in C# to send and receive dmx packages.

Info

This code was created for teaching purposes and not to be used in productive applications. The protocol is not fully implemented and there are of course bugs. Please be aware when using this code in your application!

Example

Console.WriteLine("ArtDotNet Client");
var controller = new ArtNetController();
controller.Address = IPAddress.Loopback;

controller.DmxPacketReceived += (s, p) =>
{
	Console.WriteLine("DMX Packet received " + p.Length);
};

controller.Start();

Console.ReadKey(true);

controller.Stop();