BlinkStickDotNet.BlinkStick.Morph C# (CSharp) Метод

Morph() публичный Метод

Morph from current color to new color on BlinkStick Pro.
public Morph ( byte channel, byte index, RgbColor color, int duration = 1000, int steps = 50 ) : void
channel byte Channel (0 - R, 1 - G, 2 - B)
index byte Index of the LED
color RgbColor Color parameter as RgbColor class instance
duration int How long should the morph last
steps int How many steps for color changes
Результат void
        public void Morph(byte channel, byte index, RgbColor color, int duration=1000, int steps=50)
        {
            this.Morph(channel, index, color.R, color.G, color.B, duration, steps);
        }

Same methods

BlinkStick::Morph ( RgbColor color, int duration = 1000, int steps = 50 ) : void
BlinkStick::Morph ( byte channel, byte index, byte r, byte g, byte b, int duration = 1000, int steps = 50 ) : void
BlinkStick::Morph ( byte r, byte g, byte b, int duration = 1000, int steps = 50 ) : void
BlinkStick::Morph ( byte channel, byte index, string color, int duration = 1000, int steps = 50 ) : void
BlinkStick::Morph ( string color, int duration = 1000, int steps = 50 ) : void