Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/StartDIOPulse
- Timestamp:
- 03/12/25 07:57:21 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/StartDIOPulse
v4 v5 2 2 Start a digital output pulse for the main board or a DIO option card. 3 3 4 {{{ 4 {{{#!c++ 5 5 int StartDIOPulse(int bd, int out, uint8 cond, int count, float pulseWidth, float dutyCycle); 6 6 }}} 7 7 8 {{{ 8 {{{#!c++ 9 9 int StartDIOPulse(int bd, int out, float dutyCycle); 10 10 }}} … … 29 29 == Examples == 30 30 31 {{{ 31 {{{#!c++ 32 32 if(StartDIOPulse(1, 1, DIO_PULSE_HIGH, 10, 2.0, 0.5) == OK) 33 33 DisplayText(0, 0, "10 pulses 1 sec on 1 sec off"); 34 34 }}} 35 35 36 {{{ 36 {{{#!c++ 37 37 if(StartDIOPulse(1, 4, 0.7) == OK) 38 38 DisplayText(0, 0, "Card 1 Output 4 70 pct");