Description
Sets the interval between pulses on a specified output channel
Syntax
setInterPulseInterval(uint8_t channel, float timeInSeconds)
Parameters
channel: the output channel to adjust
timeinSeconds: the duration of phase 1 (0.0001s to 3600s)
Returns
None
Example
// Set output channel 1 to deliver 1ms monophasic pulses at 10Hz.
myPulsePal.setBiphasic(1,0);
myPulsePal.setPhase1Duration(1,0.001);
myPulsePal.setInterPulseInterval(1,0.099);