Quote: Originally Posted by
djurchicprelude 
Ive searched through the configurator and cant find anything on pulsing???
To pulse you need to make some logic. First a button that changes a variable to true or to 1 or something other than false or 0 (or something you determine to mean off) as well as turn on the output.
The logic then will monitor that variable that was changed to lets say 1. If that variable is 1, then
another variable will be incremented. If that variable is 0, then the counting variable is 0.
Another piece of logic that will now monitor this count variable. If the variable is over X where X is a number like 10, then turn the output off.
So that 100 number is how long the digital ouput is on for. If the output timer is set to fire every 100ms (0.1s), then it takes 10 counts before the digital output turns off, and therefore (100ms per logic iteration) x (10 logic iterations) = 0.1 * 10 = 1 second pulse.
Adjust the numbers for different values. If you change the timer to fire every 50ms still counting to 10, then it would only pulse for 0.5 seconds. Or Change the count to 42 and with the 100ms timer would be 42 * 0.1s = 4.2 seconds.