/** * <summary> * Starts the preprogrammed playing sequence. * <para> * The sequence * runs in loop until it is stopped by stopPlaySeq or an explicit * change. To play the sequence only once, use <c>oncePlaySeq()</c>. * </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 startPlaySeq() { if (_func == null) { throw new YoctoApiProxyException("No Buzzer connected"); } return(_func.startPlaySeq()); }