06-02-2005 09:16 AM
06-02-2005 09:24 AM
06-02-2005 09:38 AM
06-02-2005 09:51 AM
09-27-2013 08:44 AM
Hi, I have a similar situation. I have posted my piece of code and would like a bit of assistance. So I have a boolean array entering the VI from a network stream and I have each element entering a comparison function for a sting value. The string elements are then built into an array. I have set up the property node to link to the Monitor System Indicator array but I'm not sure how to implement this into a display.
I want to display the latest changing element in the string array.
09-27-2013 11:05 AM
Here is a sample vi that will do what you are asking. Not sure that it is the most elegant of solutions, but should work for your small array size.
09-27-2013 12:14 PM
to add what was said.....I would change your multiple function code to an array form using a for loop
much cleaner and if a change happened on the False select all you would get is "System OK' on your end and would not know what it was associated to, so I changed it to what would be an example...."VFD1 Alarm System OK"
09-27-2013 01:32 PM
Thank you guys for the input! I'm going to attempt some of these ideas.
10-03-2013 07:46 PM
Here is the solution to my problem. It is used to show a image of a highlighted door which is open. I added a Elapsed Time VI to pulse the highlighted image with the normal image to show a flashing motion. I don't think using a Timer is the best way to pulse between two images but it works. I want to expand this and flash between images if more than one door is open.
Thanks for the help.
10-03-2013 08:33 PM
Why do you think a timer won't be the best way?
PS: You do know that something =False is the same thing as using a Not function. And something = True is completely pointless and should just be eliminated.