Changes between Version 2 and Version 3 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/StartDIOPulse
- Timestamp:
- 12/27/11 09:55:53 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/IO/StartDIOPulse
v2 v3 14 14 * bd - number of digital output card (main board output is not supported for pulse) 15 15 * output - output number (outputs 1 - 4) only are supported 16 * cond - true = start with output on, false= start with output off16 * cond - DIO_PULSE_HIGH = start with output on, DIO_PULSE_LOW = start with output off 17 17 * count - count of pulses to output, 0 = continuous until StopDIOPulse 18 18 * pulseWidth = size of the cycle in seconds … … 30 30 31 31 {{{ 32 if(StartDIOPulse(1, 1, true, 10, 2.0, 0.5) == OK)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 }}}