Animatroller.Framework.PhysicalDevice.MFL7x10WPar.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 = White
            // 6 = Strobe (0-15 = off, 16-255 = slow to fast)
            // 7 = Speed (0 = off)
            // 8 = Color mixing and run automatically (0 = off)

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