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

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

Morph from current color to new color.
public Morph ( string color, int duration = 1000, int steps = 50 ) : void
color string Must be in #rrggbb format or named color ("red", "green", "blue")
duration int How long should the morph last
steps int How many steps for color changes
Результат void
        public void Morph(string color, int duration=1000, int steps=50)
        {
            this.Morph(0, 0, color, duration, steps);
        }
        #endregion

Same methods

BlinkStick::Morph ( RgbColor color, int duration = 1000, int steps = 50 ) : void
BlinkStick::Morph ( byte channel, byte index, 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