08-02-2025 08:26 AM
Hello again.
Guided by one of good Knights of NI I used a DAQ assistant VI to retrive two signals from USB-6210 and to scale them according to my units. I did it programatically before, but still I have the same problem. When I supply from my calibrating device a voltage signal in steps by 1V starting from 0V to 10V all working correct (see attached screenshoots) as long as I switched off custom scaling in DAQ assistant settings. But when I select Temp scale, prepared as a Map range -40 deg C to 125 deg C the result is cut off above some 50 deg C even if I supply exactly the same pattern of voltage from calibrator. The cut of the scaled signal appears above some 5 V at input. The settings seems pretty easy and I do not see to much room for my mistake but some how it does not work. I tested also when only one channel on the device is selected - the same result. I tested also another channel (my preset called viscosity) and have the same cut off above 5 V at input. Both channels are set to differential configuration with input range 0-10V. Any Ideas what is going on with it?
Solved! Go to Solution.
08-02-2025 11:55 AM
Hello, again.
Despite urging from several of us to provide clear and complete information to help you with what should be a simple DAQmx task, you continue to provide minimal information, and rarely any useful LabVIEW code.
Here is a suggestion that will enable us to teach you how to solve your DAQmx issues, but it will involve a little bit of work on your part.
Bob Schor
08-04-2025 10:05 AM
After configuring the custom scale, you should set the Scale Input Range.Max = 125 and Scale Input Range.Min = -40.
If you leave Max = 10 and Min = 0, the device will not use the full input range you are expecting. If you set the signal input range to the input range expected (given your custom scale), the readings will not rail unexpectedly.
08-10-2025 03:44 PM
I used some of your points as they were very helpful indeed. Honestly, I'm building my VI for special, one-time use, so I simply need a working application. I managed by abandoning the built-in scaling tool and simply adding a mathematical formula module to linearly convert the voltage to the units I need. It may not be elegant or correct, but it's fast and effective. I might return to this topic someday, but for now, thank you for the valuable tips.