Having several DAQ help.

Hello.

I started by creating a DAQ assistant who provides 'provision of reading', but who made a mistake.

Then I started on this operation, as shown in the VI (see attachment file) - have a DAQ for each.

I just want to provide two sensors of level and read them, so that I am able to see if the water level is high or low.

I really don't see what should be my problem, now that I've specified which outputs and inputs that each DAQ should work with.

Is there anyone who please can help me?

Get this for the two "power of reading:

Error-50103 occurred at DAQmx start Task.vi:9

Platform AND Services: The specified resource is reserved. The operation could not be performed as indicated.

Best regards

Kenneth G. Vejen

If you want to control 2 analog outputs, you must provide 2 analog sources. I think the error message is quite clear. Just a single command. Have 2 controls and create a table.

Your analog read makes no sense either. You have only one comparison and one (hidden) indicator. Why would you do that when you try to read 2 channels?

p.s., Creating an indicator and wiring for the button control it are stupid. Simply right-click on the button and select visible items > digital display.

Tags: NI Software

Similar Questions

  • What's the point of having several columns in the ORDER BY clause?

    DB version: 10 gr 2

    When you use the ORDER BY clause, the lines are always sorted by the first column in the ORDER BY clause. So, what's the point of having several columns in the ORDER BY clause (I always see this in production codes)?

    For the below SQLs' schema SCOTT, result sets are always classified according to the first column ename. When I added use asc and desc of employment, does not change the result set.
    SQL> select * from emp order by ename;
    
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
    ---------- ---------- --------- ---------- --------- ---------- ---------- ----------
          7876 ADAMS      CLERK           7788 23-MAY-87       1100                    20
          7499 ALLEN      SALESMAN        7698 20-FEB-81       1600        300         30
          7698 BLAKE      MANAGER         7839 01-MAY-81       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-81       2450                    20
          7902 FORD       ANALYST         7566 03-DEC-81       3000                    20
          7900 JAMES      CLERK           7698 03-DEC-81        950                    30
          7566 JONES      MANAGER         7839 02-APR-81       2975                    20
          7839 KING       PRESIDENT            17-NOV-81       5000                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30
          7934 MILLER     CLERK           7782 23-JAN-82       1300                    20
          7788 SCOTT      ANALYST         7566 19-APR-87       3000                    20
          7369 SMITH      CLERK           7902 17-DEC-80        800                    20
          7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0         30
          7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30
    
    14 rows selected.
    
    SQL> select * from emp order by ename, job;
    
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
    ---------- ---------- --------- ---------- --------- ---------- ---------- ----------
          7876 ADAMS      CLERK           7788 23-MAY-87       1100                    20
          7499 ALLEN      SALESMAN        7698 20-FEB-81       1600        300         30
          7698 BLAKE      MANAGER         7839 01-MAY-81       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-81       2450                    20
          7902 FORD       ANALYST         7566 03-DEC-81       3000                    20
          7900 JAMES      CLERK           7698 03-DEC-81        950                    30
          7566 JONES      MANAGER         7839 02-APR-81       2975                    20
          7839 KING       PRESIDENT            17-NOV-81       5000                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30
          7934 MILLER     CLERK           7782 23-JAN-82       1300                    20
          7788 SCOTT      ANALYST         7566 19-APR-87       3000                    20
          7369 SMITH      CLERK           7902 17-DEC-80        800                    20
          7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0         30
          7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30
    
    14 rows selected.
    
    SQL>  select * from emp order by ename, job desc;
    
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
    ---------- ---------- --------- ---------- --------- ---------- ---------- ----------
          7876 ADAMS      CLERK           7788 23-MAY-87       1100                    20
          7499 ALLEN      SALESMAN        7698 20-FEB-81       1600        300         30
          7698 BLAKE      MANAGER         7839 01-MAY-81       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-81       2450                    20
          7902 FORD       ANALYST         7566 03-DEC-81       3000                    20
          7900 JAMES      CLERK           7698 03-DEC-81        950                    30
          7566 JONES      MANAGER         7839 02-APR-81       2975                    20
          7839 KING       PRESIDENT            17-NOV-81       5000                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30
          7934 MILLER     CLERK           7782 23-JAN-82       1300                    20
          7788 SCOTT      ANALYST         7566 19-APR-87       3000                    20
          7369 SMITH      CLERK           7902 17-DEC-80        800                    20
          7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0         30
          7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30
    
    14 rows selected.

    Search in this example, you will see the difference

    SQL> create table test_order (name varchar2(10), surname varchar2(10), age number);
    
    Table created.
    
    SQL> insert into test_order values('Kamran','Agayev',26);
    
    1 row created.
    
    SQL> insert into test_order values('Kamran','Taghiyev',26);
    
    1 row created.
    
    SQL> insert into test_order values('John','Kevin',23);
    
    1 row created.
    
    SQL> select * from test_order;
    
    NAME       SURNAME           AGE
    ---------- ---------- ----------
    Kamran     Agayev             26
    Kamran     Taghiyev           26
    John       Kevin              23
    
    SQL> select * from test_order
      2  order by age;
    
    NAME       SURNAME           AGE
    ---------- ---------- ----------
    John       Kevin              23
    Kamran     Agayev             26
    Kamran     Taghiyev           26
    
    SQL> select * from test_order
      2  order by age asc, surname desc;
    
    NAME       SURNAME           AGE
    ---------- ---------- ----------
    John       Kevin              23
    Kamran     Taghiyev           26
    Kamran     Agayev             26
    
    SQL>
    

    When in the second query, I sorted out only for age, you saw it there two 26 years old Keita, there was first Agayev, then Taghiyev. But if I want to get the family names in descending order when there are two very old person, then I will add the second column in the order by clause

    - - - - - - - - - - - - - - - - - - - - -
    Kamran Agayev a. (10g OCP)
    http://kamranagayev.WordPress.com

  • Having several problems with Adobe Premiere elements 13.  Now my worst is that when I add text to a clip, it comes out "Auto color" so that the text is in place.  Help?

    I'm having some trouble with 13 elements.  One is that, in mode 'play', the sound stops just happening.  I have to click 'pause' and then 'go' again and the sound returns.  It stops also play on its own, I have to hit 'play' on several occasions.  Just got the software, used intensively for a week or two and it just started happening.dor

    Today, when I add text to a clip, it deletes now on "Auto color" so that the text is visible in the clip, then automatic color when the text is missing.  Any suggestiosn?

    nikovichb

    If we look at the same thing, you called the attention a strange first elements 13 titration AutoColor/module interaction. This can be reproduced to the Expert or

    fast working space. I will be this demo within work fast since it's where you worked.

    1. import a still in fast work/film space.

    2. with the still selected, go in Panel of Palette/Color tab/settings setting expanded and just click the close the route of the tab Auto color tab adjust.

    3. go into Menu/New text/default text to open the module of titration of the project. When you do this, you see the following and not the still on which the text title must go.

    And when you close the titration module, you will see the title of text "Add text" in nature.

    The only solution I can think of right now is to create the title of text and then apply the Auto color to the still.

    It is interesting that this happens only with the color of the car in the color Panel. If you do not click

    Color Panel and to use more options for color adjustments, this behavior does not occur.

    Deleting the Adobe Premiere elements Prefs file does not correct this situation.

    Regarding

    I'm having some trouble with 13 elements.  One is that, in mode 'play', the sound stops just happening.  I have to click 'pause' and then 'go' again and the sound returns.  It stops also play on its own, I have to hit 'play' on several occasions.  Just got the software, used intensively for a week or two and it just started happening.dor

    I think that here we have to explore the parameters of the project (presets), rendered the source and chronology of media properties and non-rendusent contained prior to export.

    Please read the foregoing

    a. check if the Auto title text color glitch I've seen what you describe in your situation

    b. give the details of your project so that we can explore cause and effect for irregularities in reading content of chronology, as seen in the edit box monitor.

    Thank you.

    RTA

  • I use several DAQ assistant but it seems impossible...

    Hello world

    I'm on a project for some time.

    To summarize, I had 3 modules for the project: Anolog, digital, input resistance meter.

    My main program works, but now I have to connect with an excel file.

    I found an easy way of this solution, but now my problem is bigger. The fact is that I use my screws and screws with this how to link my data, but according to LabVIEW Sub, I can't, in the same program, do something in relation to 2 modules different. Obviously, each module works with a DAQ Assistant.

    To be more specific: I want to put the data from the 2 (thanks to the analogue of the module), and wire different sensors 1-> 0 or 0-> 1 (thanks to the digital module)

    And when I link 2 DAQ in the same file or 2 screws secondary who got 1 acquisition of data in entry of a measurement file, it does not work. The error that I can not launch the DAQ second after the first... so...

    I hope you understand my problem.

    You have a solution for this problem? Should I change a large part of my program to do this or is it just a small detail?

    Thank you in advance! I'm really disappointed-_ - I'm for several times... and I'm late for my project...

    Best regards.

    ML


  • Assistant DAQ - HELP! why I don't Assistant DAQ on my 8.6.1 range of entrance of the student edition?

    Help. When I create a new Vi (for the 1st time) have installed LabVIEW my palette entry does not contain the DAQ Assistant? Is this true or an installation problem (no erros installation were marked upward)?

    How am I supposed to gain entry without the DAQ Assistant analoque signals?

    Solution - I had installed DAQmx before LabVIEW. Apparently LabVIEW MUST be installed before DAQmx. DAQmx then reinstalled and it worked!

  • Window of back it application "snaps" to a size preset 10 minutes after having been resized - HELP!

    I use the VLC Media Player, as well as other concurrent applications on my desktop.  For some reason, a dozen minutes or more after than I re-size the window of the application VLC to work alongside my other apps, it "snaps" back to a much smaller size that I can't work with.  Having to constantly re-size of the app has become tedious.  Y at - it a fix for this problem?

    Hi will7370,

    1. did you of recent changes on the computer?

    2. When was the last that it functioned very well?

    3. the question facing you only with the VLC Player?

    Method 1

    It is possible that some third-party programs installed on the computer is causing the problem.

    I suggest that you put the computer in a clean boot state and check if it helps.

    To help resolve the error and other messages, you can start Windows XP by using a minimal set of drivers and startup programs. This type of boot is known as a "clean boot". A clean boot helps eliminate software conflicts.

    See section to learn more about how to clean boot.

    How to configure Windows XP to start in a "clean boot" State

    http://support.Microsoft.com/kb/310353

    Reset the computer to start as usual

    When you are finished troubleshooting, follow these steps to reset the computer to start as usual:

    (a) click Start, type msconfig in the search box and press ENTER.

    (b) If you are prompted for an administrator password or for confirmation, type your password or click on continue.

    (c) under the general tab, click the Normal startup option, and then click OK.

    (d) when you are prompted to restart the computer, click on restart.

    Method 2

    If the previous step fails, then I suggest that you uninstall and reinstall the VLC Player, check if it helps. I also suggest that you reset the VLC player Preferences, and then later proceed with uninstalling and reinstalling the drive.

    How to change or remove a program in Windows XP

    http://support.Microsoft.com/kb/307895

    Download VLC player

    http://www.videolan.org/VLC/

    If the previous step fails then I would suggest that post you your request in the forums of VLC Player or contact support.

    http://www.videolan.org/support/FAQ.html

    http://www.videolan.org/contact.html

  • DAQ help in an automated task

    I'm using LabView 2011, and I'm also using a USB-6008.  I use the analog output A01 and ground to run those to a BNC cable (the other side of the cable marked areas for soil and the center that I know where to put my son from the acquisition of data) that is connected to a trigger.  I want to raise one arm to move up when the high potential is applied (5V), then the tool down when there is no risk.  I'm having a hard time getting it works really well.

    I tested my signal output on the programme of measures and I see a signal 5V and 0V, so that's good.  I also tried making a task and this is where I got stuck trying to make the task and actually make the arm to move.  Some advice on what could be done?


  • How do DAQmx tasks work on several DAQ devices

    I created tasks of temperature on cDAQ1 on my development PC.  I moved this DAQ system to the laboratory as well as an executable file.  I connected cDAQ2 to my development PC and none of the tasks that I created will work on this system since all channels of reference on cDAQ1.  Also the executable will not work with cDAQ2 also.  Note that cDAQ1 and cDAQ2 have the same hardware configuration.

    How to create these tasks so that they will work with system or additional identical systems in the future?

    Ok.  I see the problem.  It's because your devices have different names.  You told your tasks to make reference to a hardware device that has a specific name: "cDAQ1."  This is why your program will always search for a hardware device with this name.  Here are your options:

    1. replace the name of the device "cDAQ2" "cDAQ1" on your target computer.  You will need to do this for each computer target on which you load your executable file.

    or...

    2. After installing your DAQ card and your program to your target computer, go to your tasks in MAX and re - direct to appropriate material (cDAQ2) by selecting "Change the physical channels" for each task and designating the appropriate on cDAQ2 channels.

    Alternatively, you can use the vi to "Create jobs" instead and add a control that allows the user to select the channels of material on which runs your acquisition.

  • Function Tare DAQ help and restart the service for the vi program

    Hello!

    I have a program that aquiers a signal sent by the DAQ Assistant. Here, I searched the Forum and on the web, but I can't find a way to implement a tare function. The signal comes from a cell and therby it would be good that Icould tare the zero value signal. In the DAQ Assistant I can calibrate it manually, but I would like to wire this function to a button.

    Also I have another problem that should not be difficult to solve, but I am struggling with it. I want a service resert my labview code so that I can restart the program from the beginning. I used a normal structure and restart an enum constant and weird via a tunnel. But it doesn't seem to work. Instead of reset the program it only stops it

    I have attached my code below.

    Best regards Maurlind


  • Im having several problems app fatalerror 502 / configuration each time that I reboot cannot find the problem

    also I lost conecction with IE, also my computer when it is stopped down it auto starts in the middle of the night.

    Hi Tericlark,
     
    -What, exactly, is a transcript of the error message that you receive?
    -Remember to make changes to your computer after that this problem started to happen?
    -What happens when you lose the Internet connection? You receive an error message? If Yes, indicate the same.
    -Have you set the power options on your computer?
     
    Put your computer in a clean boot state to identify the application at the root of this problem.
     

    Put your boot system helps determine if third-party applications or startup items are causing the problem. If so, you need to maybe contact the manufacturer of the program for updates or uninstall and reinstall the program.

    See the following article in the Microsoft KB for more information on how to solve a problem by performing a clean boot in Windows Vista or Windows 7:

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7

    Note: After troubleshooting, be sure to set the computer to start as usual as mentioned in step 7 in the above article.

  • InContext Editing several pages help needed

    I built a website for a client and gave them

    InContext Editing online access via the module. However, they / I can only change the home page.  When I navigate to a different page to change it, it opens a new window, with no ability to edit (I think that I'm always inside Incontext or I'm wrong). From there, I think I should make ctrl + e to bring in the editing part. However, when I try Ctrl + E / Cmd + E it does not provide editing capabilities at all. Nothing happens.

    I built the web using app div and then giving them across editiable incontext.  I downloaded the file includes / ice to the server.

    So, while I can edit and edit photos on the home page. For all other pages, I can't do the same thing. They have all the ediitble regions.

    Thank you

    Kathryn

    Other that the "Home" page, there are only two other editable pages:' FAQ's ' and 'Contact' .

    CTRL-E displays InConext on all of these 3 pages. You should be able to navigate in the any of these 3 pages in InContext and edit them.

    Overlooking your panels to Spry tab on the "FAQ" page, I noticed that you'll probably run into problems with the editing on it.

    I have attached some documents different text with html code published as it should be for the panels. See the files at the bottom of this post on the forum

    Basically, you want to change EACH div TabPanelContent. If you want that the user is able to change the tabs themselves, then you need to wrap it with its own div and make it ice: editable as well. I noticed that each of the changes on text files. Look them over and see if that helps.

    If you still have problems, feel free to PM me & I will give you an email. You can invite me as a user & I will be happy to further test for you.

    -Tom

  • Having several temporary folders in my XP computer, but all showing them in the form of Excel files

    Temporary files, .tmp files, are now all over my computer, in folders and on the desktop, but when I try to open them, they all seem to be Excel files. Cleaning the computer using * cleaner does not remove them. This problem is only a few weeks and I have not changed anything - I know - to do this. How can I stop this and restore the default settings for temporary files?

    * original title - Temporary files: tmp, in Excel 2007 files *.

    AV programs can cause this (Mcafee is one of them). Turn it off they disappear. If you are using Mcafee uninstall it, and then use the Delete tool. Then install something else / better

  • Having several problems with programs

    I'm a noob to PC so I will probably need the step by step instructions.
    OK, problem 1.
    (1) in my Panel control to uninstall programs I uninstalled many programs, here's the question, icons, name, Publisher, version and installed on dates are there, note how I don't understand the size, Yes, size white on those.

    (2) OK, somehow and I mean, somehow, in my (c) thing I have a folder named "program files and, get this" Program Files (86), which im guessing means there 86 copies of itself or something, that would explain also how 70 GB is used up, even if I have virtually nothing large on my pc. " also, it won't let me remove it because I need of approval of administrator or systems, in addition, in the settings I gave myself all full power on my pc, literally, every box is checked in what I can do, and I still need approval.

    (3) insufficient memory is available to process this command, this only happens on 1 game, the game is very small size, I have a lot of storage space and all with the stacksize IRP does not, any number 1-12 or 90 000 works.

    (4) this text of bloody effin God will strengthen the will doesn't go far, I already deleted all cookies,

    (5) sometimes, just sometimes firefox not illuminate, no reason, so I install chrome, then she also do not turn, sometimes both do not illuminate, now both lights

    more info
    Windows 7 Edition home premium
    64 bit
    install memory (RAM) 4 GB (3,79 GB usable)
    more than 100 GB of memory left,

    Original title: get ready for some messed up problems.

    Hello

    I suggest you to read the following article.

    Take a look at this link here to explain the who of Programs (86):

    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-files/programs-files-vs-program-files-x86/7d631676-e688-472a-a1bb-eefccfeca6d7?page=1&TM=1349285263858

    If you use a text improve Firefox see: How can I disable the affiliation platform 'Improve text' which is present on all my web surfing: http://support.mozilla.org/en-US/questions/887190

    Problem with the installer and uninstaller to consult the following link:

    The program to install and uninstall problem solving:

    http://support.Microsoft.com/mats/program_install_and_uninstall

  • VARs used in several symbols - help requested

    Hey

    I have a symbol on my scene (let's call it A), there are other symbols (B & C) in A 2. These symbols are interpolated and are moving through one (two not starting at frame one but more later on). B and C are text boxes and both have an actionscript in frame 1. In this script is a certain calculation. For this calculation is a random number generated necessary, however, in the two symbols they should be equal. So somewhere in my little program linking the symbol B and C (or B and C by using A variable or the scene).

    Because of interpolation, things like A.B.myTextbox_txt.text are not possible (or other combinations).

    If you give advice to the use of the classes, please give me a detailed, notice because it's something that I just start learning (and so do not yet use this program which I use for my site). My biggest problem with classes is that I have trouble, manage things like that, addressing the variables, instances, other classes, etc.

    Thanks in advance,

    Barbet

    One approach would be to determine the value and store it in a variable in object for both C & B are sure to have the same value.  Then, every time B and C & come to life they can access that variable using MovieClip (parent) .variableName.

  • scaling problems with the DAQ hardware help

    I am a new user and I'm trying to do a simple scaling of my entries of tension using the DAQ help. For example: a channel entered around 8V on a 0 to 10V input selection. I'm trying to resize it (linear) to show me around 28V using y = mx + b formula. My value of m is 3.2 and b 0. What DAQ Assistant bed is close to 16V instead of 25V (3.2 * 8). I custom make several scales, basically multiplying the entry of 2, 3, 4, 5, & but none exits causes what I expected according to the formula, and even the 5 x the value decrease. If I go to "not to scale", I read 8V, which is what actually happens in the 6255 map. Any thoughts?

    Hello DB66.

    Remember that the scope of the input Signal must be defined scale post. How do you set as your input signal range, you're reading may be scaling themselves within the reach of the input signal. A value of coefficient of 3.2, the stove must be Max = 32 Min =-32, since your device probably has a +/-10V range.

    Hope that helps.

Maybe you are looking for

  • Made an update of Firefox, now flooded with ads google reader and media

    A few days ago, I made an update of Firefox and from any Web site, I go then, I have huge, flashing, distracting ads Google work at home and the classified ads in Media Player, two malware. I managed to run a program that reduced the number of them o

  • move the contacts from one account to another iCloud

    My iCloud account is created and bound to a business e-mail address. I also have my account linked to my personal email address (for iTunes) apple staff. I'm leaving this work and want to transfer all the data from iCloud my iCloud account of work ac

  • HP Photosmart 5620 all-in-one: cannot download driver Windows 10

    Printer has been disconnected, when I tried to reinstall, I received a message that the installation has failed. Tried to delete and reinstall, same result. I had this problem when I got to 10 Windows, but I don't remember what I did to solve the pro

  • save millions datas in a sec

    Hi guys, I tried searching, but I have not found the answer, that's why I'm writing this. How many points/samples which can be saved in 1 sec with Labview (max)? It depends on my PC specs? I searched this forum and found this old thread http://forums

  • "Error on page" while he was playing msn games online

    OP:msnonlinefreegames, errorpn pageI recently bought a HP 64-bit with Windowsw 7 computer.  Whenever I try to sign up for Msn games online fre.  I can't BRING simply DOWNLOAD 'ERROR REF PAge'.  What's wrong