Exemplo n.º 1
0
 /*
  * Suppress all channels that belong to a fixture.
  */
 public void Suppress()
 {
     for (int i = startChannel; i <= endChannel; i++)
     {
         DMXController.Suppress(i);
     }
 }
Exemplo n.º 2
0
 public void SuppressBlue()
 {
     DMXController.Suppress(startChannel + 2);
 }
Exemplo n.º 3
0
 public void SuppressGreen()
 {
     DMXController.Suppress(startChannel + 1);
 }
Exemplo n.º 4
0
        /**
         * These methods allow you to suppress each channel individually instead of all of them together.
         * To suppress all, use the Suppress() and Unsuppress() found in the superclass.
         **/
        #region Suppression

        public void SuppressRed()
        {
            DMXController.Suppress(startChannel);
        }