/**
  * <summary>
  *   Starts the preprogrammed blinking sequence.
  * <para>
  *   The sequence is
  *   run in a loop until it is stopped by stopBlinkSeq or an explicit
  *   change.
  * </para>
  * </summary>
  * <returns>
  *   <c>0</c> if the call succeeds.
  *   On failure, throws an exception or returns a negative error code.
  * </returns>
  */
 public virtual int startBlinkSeq()
 {
     if (_func == null)
     {
         throw new YoctoApiProxyException("No ColorLed connected");
     }
     return(_func.startBlinkSeq());
 }