Пример #1
0
 /**
  * <summary>
  *   Changes the PWM duty cycle at device power on.
  * <para>
  *   Remember to call the matching
  *   module <c>saveToFlash()</c> method, otherwise this call will have no effect.
  * </para>
  * <para>
  * </para>
  * </summary>
  * <param name="newval">
  *   a floating point number corresponding to the PWM duty cycle at device power on
  * </param>
  * <para>
  * </para>
  * <returns>
  *   <c>0</c> if the call succeeds.
  * </returns>
  * <para>
  *   On failure, throws an exception or returns a negative error code.
  * </para>
  */
 public int set_dutyCycleAtPowerOn(double newval)
 {
     if (_func == null)
     {
         throw new YoctoApiProxyException("No PwmOutput connected");
     }
     if (newval == _DutyCycleAtPowerOn_INVALID)
     {
         return(YAPI.SUCCESS);
     }
     return(_func.set_dutyCycleAtPowerOn(newval));
 }