/**
  * <summary>
  *   Adds a new transition to the blinking sequence, the move is
  *   performed in the RGB space.
  * <para>
  * </para>
  * </summary>
  * <param name="RGBcolor">
  *   desired RGB color when the transition is completed
  * </param>
  * <param name="msDelay">
  *   duration of the color transition, in milliseconds.
  * </param>
  * <returns>
  *   <c>0</c> if the call succeeds.
  *   On failure, throws an exception or returns a negative error code.
  * </returns>
  */
 public virtual int addRgbMoveToBlinkSeq(int RGBcolor, int msDelay)
 {
     if (_func == null)
     {
         throw new YoctoApiProxyException("No ColorLed connected");
     }
     return(_func.addRgbMoveToBlinkSeq(RGBcolor, msDelay));
 }