public LEDCore(string port, int baudRate, Animation animation) : this(port, animation) { this.BaudRate = baudRate; }
public void PlayAsync(Animation animation) { Console.WriteLine (animation.Name + " is now playing"); animation.Play (); }
public LEDCore(string port, Animation animation) : this() { this.Port = port; this.Animations.Add (animation); }
public void Play(Animation animation) { Console.WriteLine (animation.Name + " is now playing"); animation.Play (); animation.PlayThread.Join (); }