Skip to content

uDMX is a simple C# class to control uDMX device from .NET application.

Notifications You must be signed in to change notification settings

PavelBansky/uDMX

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

uDMX

uDMX is a simple C# class to control uDMX device from .NET application. It was tested in Windows and Linux/Mono.

Example

using(uDMX dmx = new uDMX())
{
	if (dmx.IsOpen) 
	{
	  // Set channel 0 to value 127
	  dmx.SetSingleChannel (0, 127);            
	  // Set three channels, starting with channel 0
	  byte[] values = new byte[] { 0xFF, 0xAA, 0x05 }      
	  dmx.SetChannelRange(0, values);
	}
}

Prerequsites

Known issues

  • uDMX.SetChannelRange() does not work properly in Linux :(

About

uDMX is a simple C# class to control uDMX device from .NET application.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages