BlinkStickDotNet.SendColorEventArgs.SendColorEventArgs C# (CSharp) 메소드

SendColorEventArgs() 공개 메소드

public SendColorEventArgs ( byte channel, byte index, byte r, byte g, byte b ) : System
channel byte
index byte
r byte
g byte
b byte
리턴 System
        public SendColorEventArgs(byte channel, byte index, byte r, byte g, byte b)
        {
            this.Channel = channel;
            this.Index = index;
            this.R = r;
            this.G = g;
            this.B = b;
            this.SendToDevice = true;
        }
    }
SendColorEventArgs