Jump to content

XControl with Latching Action


Recommended Posts

Have you ever wanted to create an XControl that has a Latching mechanical action?  For a long time I thought it was impossible because there's no event that occurs when the block diagram terminal is read.  But it can be done by launching a background task that monitors the value in the wire connected to the terminal.  See attachment.

Latching XControl.zip

Link to comment
  • 1 year later...

Nifty trick!
I'm impressed with the ingenuity. But two minor caveats...

Warning 1: This XControl allows local variables and Value property nodes. LabVIEW prevents the built-in latching Boolean controls from having either a local variable of the latched Boolean (compile time error) or a Value property node (run time error). Those things would mess with latching, and will interfere with this code executing correctly. You should not use either of those things with a latching XControl.

Warning 2: This XControl uses an unpublished private method of scripting that is known to have problems with thread synchronization. It was created to handle some very specific editor operations. It is not a safe thing to use generally, which is why it has never been made public, because of inplaceness optimizations that make multiple wires share the same memory.

I think the use in this case is safe because there isn't any optimization that I know of that will make LabVIEW avoid the data copy if a downstream node modifies the value. For example:

image.png.f0c5d4f40c713a8e68c7c66e975ab273.png

The above image shows the Buffer Allocation dots... and we can see that the Not copies the Bool, even when debugging is turned off. I will ask my team if there are any scenarios where inplaceness will elide that dot. I don't think there can be (because

So it seems to be ok here, but I would not advise freely using that method in code generally.

 

  • Like 1
Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.