I want to program a timming loop in Labview 5. I have two input buttons, if
one is pressed an output goes to an external module,
which produces a 1 second pulse.
If the other is pressed in need to change to a diferent mode where when you
press button one a boolean output (true) is generated for a time of
15 minutes, then it resets to false.
Also if during this 15 minute period you wish to abort the output you can.
I thought that I could read the current time into an array element then keep
checking to see if this equals time + 15 minutes, however
the array input is constantly updates?.
In psuedo code this could be :
loop
if button 2 not pressed goto loop
Array(1)= current time
loop1
if button 3 pressed end loop1
if array(1)
hen loop1 and check again
otherwise end loop1
end loop
Any ideas?
Thanks
Allan