Esempio n. 1
0
 /*
  * This method needs to be called before anything in this class is accessed.
  * It creates all the DMX Channels and starts the connection to the device.
  */
 public static void StartDMX()
 {
     if (debugging)
     {
         MessageBox.Show("Debugging Mode Enabled, DMX Device will not function");
     }
     else
     {
         _device = new OpenDMXUSBWrapper();
         _device.Start();
     }
 }
 /*
  * This method needs to be called before anything in this class is accessed.
  * It creates all the DMX Channels and starts the connection to the device.
  */
 public static void StartDMX()
 {
     if (debugging)
     {
         MessageBox.Show("Debugging Mode Enabled, DMX Device will not function");
     }
     else
     {
         _device = new OpenDMXUSBWrapper();
         _device.Start();
     }
 }