07-15-2016 08:31 AM
Good day,
I am trying to read in 5 voltages from a DAQ module. If you see the photo attached, you'll notice the for-loop. When all five readings were read in the for-loop, there were no issues. However, because I need to apply a different scale to the Pressure Gauge, I pulled it out, hoping it would work the same way as before. It did not work:
Error -200489: Specified channel cannot be added to the task, because a channel with the same name is already in the task.
DAQmx Create Channel (AI-Voltage-Basic).vi:1780002<append>
<B>Channel Name: </B>PLS2
<B>Task Name: </B>_unnamedTask<28B>
What am I doing wrong or is there a better way to do this?
Solved! Go to Solution.
07-15-2016 08:42 AM
Hi James,
instead of attaching a plain image you should have attached the VI or a snippet! Images are rather hard to debug with LabVIEW…
Did you use probes to check for the error? The error message is quite clear, so the problem should be easy to locate!
Remove the DAQmx function right after the BuildArray: right now you send the very same string to the channel name input for each of the 4 channels. And don't forget to set the correct DAQmx channels in those "PLSx" controls!
07-15-2016 08:48 AM - edited 07-15-2016 08:50 AM
Hi,
The DAQmx Flatten Channel String takes in "Names" which is why you see the coersion dot where you have the 4 controls built into an array of controls. You then define the array of strings with the same name (PLS1, PLS2, PLS3, PLS4). This is the conflict that error is throwing. I believe you do not need that array of strings as the DAQmx task name controls are being typecast as strings via the coersion dot on the Flatten Channel String vi.
07-15-2016 09:06 AM
07-15-2016 10:48 AM
"Remove the DAQmx function right after the BuildArray"
The Flatten String funtion seemed to work when they were all in the the for loop, but they stopped getting indexed once I separated them, so removing the function allowed them to be indexed again.
Thank you all for the answers!