02-24-2012 12:44 PM
Ramp function didn't work for me.
02-27-2012 09:20 AM
@botenb wrote:
Ramp function didn't work for me.
Yeah, it can be fickle that way...
02-28-2012 04:00 PM
Hi botenb,
Have you tried using a case structure and shift register to do this? You could use one case for increment, one for decrement and one for hold.
Regards,
03-05-2012 01:41 PM
Im going to try that once I fix one of my other problems.
03-06-2012 12:34 PM
Why wont this stop when "Numeric" is greater then "Set Point 1"?
03-06-2012 01:12 PM
Can you be sure your upper inner loop will end? Comparing two doubles for being equal is generally a bad idea. They will have to be EXACTLY the same.
Your lower inner loop is completely wrong. It can never end since its stop terminal is wired from the outside.
I honestly can't figure out what you're even attempting to accomplish here. I suggest some LabVIEW basics to study up on the dataflow programming paradigm...
03-12-2012 11:05 AM
Can labview read two input signals at the same time?
03-13-2012 08:52 AM
LabVIEW can. Whether or not your DAQ hardware can depends on the model. Most Multi-Function DACs have many inputs but are multiplexed. If you want to read multiple signals at exactly the same time (no phase offset) then you need a more expensive simultaneous sampler card.
03-13-2012 10:29 AM
I looked through the specification sheet that I found but it doesn't say IM using NI 6052E Multifunction I/O.
03-14-2012 08:55 AM
@botenb wrote:
I looked through the specification sheet that I found but it doesn't say IM using NI 6052E Multifunction I/O.
Of course the specifications say! How could they not??? It's a 16 channel (or 8 differential pairs) model. That means you can collect upto 16 single-ended signals in a single scan. There will be a slight time delay between each channel because they're all sharing one ADC and each channel gets multiplexed into it. That is fine for most applications and is the most common DAQ type from NI.
Keep in mind that since you're sharing the one ADC your maximum sample rate will be divided by the number of channels scanned when you multiplex more than one channel.
Aggregate sample rate = maximum sample rate / number of channels