/uDMX

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

Primary LanguageC#

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 :(