10-28-2013 07:21 PM
How to make a an indicator turn on after 15 seconds using the tick count?
Solved! Go to Solution.
10-28-2013 08:01 PM - edited 10-28-2013 08:03 PM
well here's some pseudo code which might help
if (current_tickcount - starting_tickcount >= 15000) then turn_on_indicator
you'll just need to deal with the case where tick count wraps around (one way of doing this is not to use tick count at all)
10-28-2013 10:43 PM
Here. Let me know if you need any explanation
10-28-2013 10:55 PM
I have the 10.0 version of labview and it is not possible to read the sent VI. Please help.
10-28-2013 11:02 PM - edited 10-28-2013 11:03 PM
Here
10-28-2013 11:06 PM
The problem is that the indicator is not turning on after 15 seconds
10-28-2013 11:09 PM
Here for testing puspose I made it for 5 sec.Now I changed..
Now try
10-28-2013 11:11 PM
can you please convert it so i can read on my 10.0 version?
10-28-2013 11:13 PM
Oops
10-28-2013 11:18 PM
although it did not work, i would like to know the logic behind it.