10-08-2014 06:13 AM
Hello,
I am trying to reset a boolen control button due to a specific condition.
For example if I am monitoing when a digital signal is read from low to high I want to change the current state of a boolen button.
In LabView i would of accessed the property node "valve" but I am unsure how this is done in veristand.
I would also be looking for a boolen button that would have a mechanical action of "switch until released"
ANy help would be appriciated.
Solved! Go to Solution.
10-08-2014 09:41 AM - edited 10-08-2014 09:42 AM
Hi SmoothDurban,
To handle a bool button on the Veristand workspace I usually create a user channel. I then will create an alarm to monitor an event, use the procedure tied to the alarm to change the user channel value and tie the bool button on the workspace to the user channel. You can also tie alarms and procedure to the bool button (user channel) so if it is pressed it will run a procedure. I have 2 alarms, one for ON, one for OFF.
Good Luck.
10-09-2014 07:17 AM
Thanks.
I was able to use alarms to toggle on and off switches.
Thanks for you advice