Re: Create a customized boolean indicator
Can you define "Behaves like a boolean indicator"? You could always just take a square LED and play with the dimensions and colors until it is shaped like a line and has the same off color as the...
View ArticleRe: RT programming for cRIO/sbRIO *.ctl cluster
Right-click on the cluster inside the array. Unchecked the option to view as an icon. You'll see the cluster as actual data. Changing any data item causes that array element to exist, as well as all...
View ArticleLED OFF
I have a VI that is part of my project work. I am entirely new to LabVIEW, trying to learn the basics. I have made a VI with 3 LED indicators, turned on for false conditions in their respective case...
View ArticleRe: Use of context menus of the Mixed Signal Graph causes application crash
I've created minimal test program which produces same fault. Program becomes faulty when I add event case "Mixed Signal Graph:Cursor Menu Selection" . Project archive and crash reports are in...
View ArticleRe: formula node, condition
Here is an example of an if statement in labviewif (y==x && a[2][3]<a[0][1]) { int32 temp; temp = a[2][3]; a[2][3] = y; y=temp; }else x=y; Another simple if...
View ArticleRe: RT - Labview - Command Parser - Bioreactor
I can't comment on the NI training, I've never taken any. However, if you like classroom training and you only took the RT class, you would probably find it helpful to take the standard LabVIEW classes...
View ArticleHow many DAQ tasks per loop?
Hi to everybody, I hope anybody can help me with the next case: I am working on a system in which I have to read signals of 5 different sensors which have different ways to communicate (4 - 20 mA,...
View ArticleRe: Issue in connecting sub VI programs through the main program
Hello Yamaeda, Can you please tell me how to change the polarity. Which command should i use to change the polarity?? Regardsymanglik
View Articleintegration
hi i want to do integration of 1d array between the range 0 to infinity using labview . how can i do? thanks
View ArticleRe: integration
Well, infinity does not exist for arrays, the number of elements is limited to 2^31. Your question does not make a lot of sense. Can you provide more details on the problem you are trying to solve?
View ArticleRe: Issue in connecting sub VI programs through the main program
Hello everyone,can anyone tell me about these command: :SOUR:SWE:DIRE UP;:SOUR:SWE:DIRE DOW; Are these commands not valid for keithley 2410 device because it is not accepting these commands and giving...
View ArticleRe: Producer consumer with analog and digital inputs and outputs
Robert, It seems that you are right and my code was actually not working correctly, even though I thought it was. When I set the 'DAQmx read.vi' function for the analog inputs to 'continious samples'...
View ArticleRe: Issue in connecting sub VI programs through the main program
Those are not LabVIEW functions. If you want to verify whether or not they are valid for your instrument, the first two places to check are in the manual and then Keithley tech support.
View ArticleRe: integration
bijal wrote:i want to do integration of 1d array between the range 0 to infinity using labview . how can i do?Bijal, do you mean: Where f(x) is a discrete function.
View ArticleRe : What are my options for controlling a third party LabVIEW executable...
It all depends on how the exe was built. I'd go for one of those 2 methods :- VI Server (well if you code with VS, it will not help that much :)) -> Example here- ActiveX. If they built the exe as...
View Articleconcat strings from different subdiagrams of a case structures
I am using a case structure, which has about 8-10 different case and each case has a string constant. I want to show the strings in a single indicator. Suppose if 3 cases runs first then second and...
View ArticleRe: concat strings from different subdiagrams of a case structures
Place your string in a shift register (initialized with an empty string) and append the relevant text (incl linefeed) with each iteration. Place an indicator on the concatenated string.
View Article