Ejemplo n.º 1
0
 /**
  * <summary>
  *   Adjusts the signal bias so that the current signal value is need
  *   precisely as zero.
  * <para>
  *   Remember to call the <c>saveToFlash()</c>
  *   method of the module if the modification must be kept.
  * </para>
  * </summary>
  * <returns>
  *   <c>0</c> if the call succeeds.
  * </returns>
  * <para>
  *   On failure, throws an exception or returns a negative error code.
  * </para>
  */
 public virtual int zeroAdjust()
 {
     if (_func == null)
     {
         throw new YoctoApiProxyException("No GenericSensor connected");
     }
     return(_func.zeroAdjust());
 }