Skip to content

cansik/ArtNet3DotNet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 

Repository files navigation

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();

About

ArtNet 3 Implementation for .NET in C#

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages