Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/StartDIOPulse


Ignore:
Timestamp:
03/12/25 07:57:21 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/StartDIOPulse

    v4 v5  
    22Start a digital output pulse for the main board or a DIO option card.
    33
    4 {{{
     4{{{#!c++
    55int StartDIOPulse(int bd, int out, uint8 cond, int count, float pulseWidth, float dutyCycle);
    66}}}
    77
    8 {{{
     8{{{#!c++
    99int StartDIOPulse(int bd, int out, float dutyCycle);
    1010}}}
     
    2929== Examples ==
    3030
    31 {{{
     31{{{#!c++
    3232if(StartDIOPulse(1, 1, DIO_PULSE_HIGH, 10, 2.0, 0.5) == OK)
    3333    DisplayText(0, 0, "10 pulses 1 sec on 1 sec off");
    3434}}}
    3535
    36 {{{
     36{{{#!c++
    3737if(StartDIOPulse(1, 4, 0.7) == OK)
    3838    DisplayText(0, 0, "Card 1 Output 4 70 pct");