Animatroller.Framework.PhysicalDevice.MarcGamutParH7.Output C# (CSharp) Метод

Output() защищенный Метод

protected Output ( ) : void
Результат void
        protected override void Output()
        {
            byte strobe = (byte)(this.strobeSpeed == 0 ? 0 : this.strobeSpeed.GetByteScale(255 - 16) + 16);

            // 8-channel mode
            // 1 = Dimmer
            // 2 = Red
            // 3 = Green
            // 4 = Blue
            // 5 = Amber
            // 6 = White
            // 7 = UV
            // 8 = Strobe (0-15 = off, 16-255 = slow to fast)

            DmxOutputPort.SendDimmerValues(this.baseDmxChannel, new byte[] {
                componentMaster,
                componentRed,
                componentGreen,
                componentBlue,
                componentAmber,
                componentWhite,
                componentUV,
                strobe
            });
        }