01-21-2012 06:48 PM
Hello. I have a simple Boolean value and I just want to know if it is possible to actively record the time since it has been true/false.
01-21-2012 08:19 PM - edited 01-21-2012 08:21 PM
@ASCE wrote:
Hello. I have a simple Boolean ...
Booleans are always simple. 😄
Try the attached.... (LabVIEW 8.2)
01-22-2012 11:26 AM
Thanks a bunch!
01-23-2012 11:57 AM
Hello again. I am having problems with wiring this timer. Would you please take a look at this for me?
01-23-2012 12:42 PM
Please attach a real VI or a snippet instead of a picture.
You also did not define what the program is supposed to do.
From a quick glance, I think you have a dataflow problem. For example the stop condition of the inner loop will never update once the inner loop starts, and will cause it to either stop immediately or run forever, locking up everything and preventing the outer loop from spinning.
Try to put everything in the outer loop and delete the inner loop.
01-23-2012 03:34 PM
I am trying to create a data-flow program in which I control the elements of an array. I want a boolean to tell me when the elements(one by one) in an array fall within a certain range for 60s. After, I want to create a case for each in which an action takes place. I want a certain amount of voltages to be sent to a device according to those ranges. What are some good vi's to instruct Labview to send certain things(save/store text, send voltages, etc.).
I attached the VI and I had one other timer that is constructed,using shift registers, to tell me the time. Let me know if the one you gave me will be better to use for the boolean.
01-23-2012 06:38 PM
01-24-2012 02:05 PM
My apologies.
01-24-2012 03:28 PM
As I said, put everything in the outer loop. Get rid of the inner loops.
01-24-2012 03:46 PM