06-02-2017 08:12 AM
Hello.
I want to know the method for creating a 'time-delay' before the data is passed. Suppose I have a 'Boolean' switch which is connected to a LED. If I press the switch, there should be some delay (say 30s) before the LED glows. Any help is appreciated.
Solved! Go to Solution.
06-02-2017 08:19 AM
Since I doubt you want to halt your loop for 30 seconds, look at using the Elapsed Time VI.
06-02-2017 08:23 AM
I have tried Elapsed Time. It is not of much help. I'd like to have a boolean control to the timer. Just like Timer On Delay (TON) block in PLC Programming languages.
06-02-2017 08:47 AM
06-02-2017 09:02 AM
This works well.Thanks AlbanR. Cheers.
06-03-2017 04:55 AM
Hello AlbanR,
I want to implement something like this.
When I hit a 'boolean' button, I want one LED to glow (say Red). After 30s time delay this Red LED should go off and another LED (say Green) should glow for next 30s and then similarly I want some other colored LED to glow and this should continue until I stop. Can you suggest me how can I implement this.
06-03-2017 06:13 AM
There is a tutorial available for LabVIEW State Machines that you might be able to use to do what you want.
06-03-2017 10:45 AM
Thanks cbuthcher. That was helpful.