USB 6211 Digital Out does not

Ive got an acquisition of data USB-6211 (and LabView 2009) and Im trying to get the output (5v) device to run a relay on and outside. IM using a tutorial I found on Internet to make the diagram Labview (http://www.pages.drexel.edu/~pyo22/mem639/lab-usb6211DigitalInputOutput/lab-usbDigitalInputOutput082...) and the circuit is simple. I tried to run the DAQ Assistant to test if my output was working, and it is not. I'm not sure if my connections for data acquisition are correct or not. Any help would be useful.

Thank you.

Hello NT_Mech,

Indeed, it is possible that you do not drive enough current for the relay.  You can check the specifications of your USB-6211 and see that the digital line will result in a maximum of 16mA.  That being said, your relay control current that is needed, you may need to run the two outputs in parallel to offer twice more common provided.  Recently, I drove a Soviet Socialist Republic of a Luminary Micro Prototype Board that did not provide enough current as well.  In the case of the tat, I was driving the relay by running two lines in parallel.

You can always simplify the software side of things by opening the measurement and Automation Explorer (MAX) and right click on your device and select test panels.  "" ' Start ' programs ' National Instruments ' Measurement & Automation then expand devices and Interfaces. Right-click and select Test panels.  You can then configure a digital output for your USB-6211 and toggle On / Off and check out.

Best,

Tags: NI Hardware

Similar Questions

  • Message "USB Mass Storage Device does not work properly"

    Ran AVG PC tune up and referred the problem message "USB storage device work does not correctly. I went to Device Manager, clicked on "bus USB controllers. He showed the device with a yellow exclamation point USB mass storage. I have double clicked on it, went to the drivers and updated the driver. I received a message that the driver was already updated and got a message "device cannot start (code 10).»

    I thought that maybe he was looking for the storage device of mass external and plugged on the USB port. He has shown in the Device Manager under the other mass storage device but had no yellow exclamation point (I guess that means it's very good).

    Is there an internal procedure and what can I do about this problem? My development program, said that this mistake could cause my computer crashes often or he can go for a long time without replying (which it does).

    Hate to be chatty but I wanted to present all the facts.

    Can someone please help me get this figured out? Thank you in advance.

    Hello Sammy,.

    Please provide detailed information about your question. I appreciate the step by step troubleshooting, and pain that you have taken to resolve your problem. However, there are a few steps more that we can try to diagnose the root cause and to check the health of your system, to solve the problem permanently.

    Microsoft does not recommend using third party software melody. That running these software can damage records.

    For the problem with the error code 10, I would ask you to try the steps below:

    A Code 10 error is generated in the Device Manager in one of the following situations:

    1. Device Manager cannot start the device.
    2. One of the pilots who needs the unit does not start.
    3. The Device Manager has insufficient information to recognize the error that spread upwards by the device driver.

    Note: In this case, the Code 10 error can be a very generic message indicating some sort of unspecified driver or device problem.

    Error Code 10 is mainly related to devices and hardware driver problems or compatibility problems between the drivers of equipment and additional software that is installed in Windows. Therefore, we recommend that solve you these problems with emphasis on device drivers, configuration of device problems and hardware compatibility issues.

    I suggest you to follow the steps described in the following Microsoft article and see if it works for you.

    FIX: "this device cannot start" error Code 10 in the Device Manager in Windows

    Hope it would help. If problem persists always post back with the current state of your computer and the result of the proposed suggestion, we will be happy to help you.

    Thank you.

  • When I connect the USB and LAN cable does not my trackpad

    Hey guys how are you.

    When I connect the USB and LAN cable does not my trackpad

    How can I fix this error. Please teach me.

    Which macbook model do you have?

    a USB mouse still works?

    your keyboard still works?

    No matter which USB port you use?

    No matter what USB device allows you to create this error?

  • I installed my USB drive but it does not recognize my imac. Only allows me to insert a disc.

    I installed my USB drive but it does not recognize my imac. Only allows me to insert a disc. I'm on OS 10.6.8

    The requirements for the SuperDrive Apple USB are:

    The system configuration required

    Compatible with the following computers:

    MacBook Pro with the Retina display

  • Tips on how to get attached with Nikon D810 and Lightroom - I tried with the uSB cable but Lightroom does not recognize the camera. My memory card has no images on it that I read somewhere that it can slow things down if it has pictures on i

    I tried to use the uSB cable, but Lightroom does not recognize the camera. My memory card has no images on it that I read somewhere that it can slow things down if she has no images on it

    If you use Lightroom CC / 6 on a Mac OSX El Capitan you must update to the latest version of CC 2015.4 / 6.4. Problems with Nikon capture home has been fixed in the latest update, the lis below.

    Lightroom Journal | Tips and advice straight from the Lightroom team.

  • USB-6211 - digital output not supported?

    Hi all

    I can't use the USB6211 device port... I use daqmx with Delphi7 API functions.

    First of all, I tried this:

    DAQmxCreateTask('', @TaskDO);
    DAQmxCreateDOChan (TaskDO, PChar('Dev1/port0'), ", DAQmx_Val_ChanForAllLines);
    DAQmxWriteDigitalU8 (TaskDO, 1, 1, 1, DAQmx_Val_GroupByChannel, $FF, @written, nil);

    I had an error in the DAQmxWriteDigitalU8:-200012 (= digital output not supported). (???)

    OK, I tried to disable autostart option based on DAQmxWriteDigitalU8 and insert a 'manual' start in the code:

    DAQmxCreateTask('', @TaskDO);
    DAQmxCreateDOChan (TaskDO, PChar('Dev1/port0'), ", DAQmx_Val_ChanForAllLines);
    DAQmxStartTask (TaskDO);
    DAQmxWriteDigitalU8 (TaskDO, 1, 0, 1, DAQmx_Val_GroupByChannel, $FF, @written, nil);
    DAQmxStopTask (TaskDO);

    Now, I got the same error in DAQmxStartTask:-200012 (Digital Output not supported, once again). (?????)

    I don't understand.. 'Digital output not supported "? USB-6211 has 4 lines! What is the problem?

    I want to just turn on and off the lines from code...

    -Cs George-

    Well, finally I figured out...

    Here is the solution:

    DAQmxCreateTask('', @TaskDO);
    DAQmxCreateDOChan (TaskDO, PChar('Dev1/port1'), ", DAQmx_Val_ChanForAllLines);
    DAQmxWriteDigitalU8 (TaskDO, 1, @dummy, 1, DAQmx_Val_GroupByChannel, @bitmask, @written, nil);

    Digital output lines are on port1! Corrected parameter.
    And the part of the interface of DAQmxWriteDigitalU8 had to be changed (in nidaqmx.pas).
    I don't know why, but the AutoStart (dummy) parameter in the DAQmxWriteDigitalU8 function is ignored: function always starts task automatically, regardless of the value of autostart. But this isn't a problem for me.

    -Cs George-

  • Satellite 1900-803: Hi-Speed USB 2.0 card does not work

    I have a portable satellite 1900-803. I recently bought and installed a Belkin Hi-Speed USB 2.0 Notebook Card, but it does not work. Manual of the card says that after the successful installation, I'd see a second 'USB bus controllers' heading which I did not. I even it was replaced by another one thinking that there could be some problems with the drivers, but it still does not work. whenever I plug in a device such as an mp3 player, a digital camera or a usb storage device, windows locks all of a sudden upward, won't move the cursor, the function ctrl-alt-del does not work and the worst of it, I can't turn off the machine!

    the map shows that it runs on any 32-bit location.

    I have the manual and the Device Manager to see if mine is a 32-bit, but I don't really know. This is probably the reason why it doesn't work? or is there another reason to make it work not? If this is the reason why, is there a way where I can upgrade my laptop's pc card slot to make it work?

    Help, please.

    I posted this question yesterday morning and did not get a single response. is it because it has to do with an older laptop? Please, someone, help...

    Post edited by: wes0702

    Hello

    Have you checked the Bios? I guess that the Bios Toshiba was preinstalled on your laptop. Am I wrong? There should be an option to change the PC Card controller mode.

    Here, you can change the mode of the automatic selection, CCIP compatible controller or card bus/16-bit.
    If the card supports 32-bit so you should use the 16-bit option.

    I think you should play a little with this option and possibly that the card will work.

  • Lenovo USB keyboard - Trackpoint/Touchpas does not

    Now, I'm having the same problem in Win7 that I barely got away with Vista.

    The problem is the following:

    -J' have the Lenovo Trackpoint and Touchpad (wonderful) built-in USB keyboard.

    -When I installed this keyboard on Vista it worked out of the box, but in Windows Update, I got an update recommended for newer drivers or better.

    -When I installed this driver, the Trackpoint and Touchpad stoppet work - so I had to restore my system and to hide these updates in Windows Update.

    -So when I install Win7 RTM these drivers seem to install with the system and therefore the Trackpoint and Touchpad on my external keyboerd does NOT work out of the box. I don't get updates to make this.

    I tried solutions:

    -J' tried to install the drivers from keyboerd.

    -The driver with quick access keys installs fine, but does not solve the problem.

    -The standard keyboard driver will not install because it says I have there is a newest Synaptics driver which had to be removed first.

    -Well, there is no Synaptics-drivers installed to remove - probably because these drivers are installed with the system.

    -J' also tried to Devil driver PS/2, etc., but nothing works.

    --> So, I'm really stuck with my wonderful Lenovo USB keyboard without being able to use the Trackpoint or Touchpad. The worst though is that I know what to do the problem, but don't know how to fix...

    Can anybode please help, I can't believe I'm the only one having this problem (in Vista or Win7).

    Henrik


  • OfficeJet 6600: HP Officejet prints 6600 pages of test, but USB connected or wireless - does not print anything

    Hello
    For some reason any my printer has ceased to be able to print anything at all, since last night at 7-8 so far, I've been able to print perfectly well.

    It is connected wireless (and on the home network and the IP address), but whether or not it is wireless (USB) - nothing will be printed at all.

    Have tried everything imaginable... uninstalled and reinstalled all HP 3 or 4 times now, various attempted fixes via the online help, nothing works. Have unplugged router printer 30 s, unplugged 30s, you name it.

    It allows to print in-house, however, no problem. Print a test - perfectly fine page, print a network test page - perfectly well. Clear print heads... everything comes out clear.

    Spotted an error prompt "spooler subsystem app not working not"... so found this page online (https://social.technet.microsoft.com/Forums/windows/en-US/460f297a-dd66-4476-a176-542e1519ca3e/fixed... and thought it was the miracle solution - nope, still doesn't.)

    Followed the steps detailed here: http://h30434.www3.hp.com/t5/Inkjet-Printing/HP-6600-won-t-print-wirelessly/td-p/4649292 - the link to the HP Print & Scan Dominican Republic by the way, is a dead link now... but I have tracked down the appropriate page and run the software. After following it exactly as I had to... I get this result:

    "There is a problem with your software which can not be repaired by this tool. Remove the software by clicking 'uninstall '. Reinstall the software with the product CD or by downloading the latest features full software from HP Customer Care. "- so in other words... I am told to do exactly what I've already done 3 or 4 times.

    It's driving me crazy... and do not understand why it will not print.

    I hope someone here can help... because it's completely maddening.

    Hello
    By coincidence, my grandson has me bought a new computer earlier in the month. and it arrived yesterday afternoon, a Lenovo all-in-One ThinkCentre w/Windows 7 - and after it he installed there, the printer printed fine from the computer.

    But, just in case it is needed, and because the advice was here, I thought I'd try the options.

    Unfortunately, I can't do a level 3 uninstall with the two methods provided. Method never showed a "util" folder or 'utility', both had a "utils" folder, and no method showed a record of "ccc". Also, by downloading the software, then go into the temporary folder through the search from the Start Menu, 3 sets of disc records came - and such that mentioned, none had the util/utility folder (all "utils" still had once) - and yet, none of them had a folder 'ccc '.

    My grandson theory was that something is likely messed up in the registry, and he doesn't dare touch it without knowing what it does - than a reformat or something registry editting and knowing exactly what they're doig - would be the best choice, but rather of your time and... almost useless with the new computer capable of printing. A friend IT very well educated friends, also backed up his theory...

    So, I have to wonder... don't you think it's worth, the Dungeon of combat with the old Gateway/Vista PC, or simply move to the new Lenovo/Windows 7 and cause less stress for us all? Haha!

    Thank you for trying to help but... it's too bad the computer unfortunately does not cooperate.

  • Chicony usb 2. camera Webcam does not work in xp toshiba s300L

    My Webcam Chicony USB 2 does not work on Windows Live or Skype.  Video œuvres in a trial, but I cannot enable video calling. Computer is computer S300 laptop Toshiba Satellite - operating system Windows XP, IE 8.   Have tried everything... Suggestions appreciated.

    Hi Jojololo,

    ·         Did you do changes on the computer before the show?

    ·         What version of Windows Live Messenger?

    If you use Windows Live Messenger 2009, there are two main webcam / video configuration menus.

    a. start Windows Live Messenger and sign in.

    b. before connecting to anyone, open the menu "Tools" then click on "Configuration video / Audio»

    c. perform the tests and click on 'next' and confirm the webcam of video display, and then click "Finish."

    d. before connecting to anyone, open the menu 'Tools' and then click 'Options '.

    e. Select "Staff" and put a check mark next to "Webcam - enable others to see that I have a webcam".

    f. click 'Apply' and then click 'Ok '.

    g. sign out and EXIT Windows Live Messenger completely to save the new settings.

    If this does not work, I suggest you visit the following sites for help:

    Windows Live Support

    http://windowslivehelp.com/community/

    Skype support

    https://support.Skype.com/

    Hope this information helps.

  • HP Envy 6-1006sa USB 3.0 ports does not.

    Hello

    I have a problem with the USB Ports 3.0 on my laptop. None of them does not seem to work.
    There is a power, but nothing that I connect it works.

    I have no idea what driver should I use (Texas Instruments Driver does not work).

    Operating system is WIn 7 64 bit SP1

    Everyone you have idea how solve it?

    Hello again Ravic30.

    Try the following driver and let me know if he takes care of the issue for you.  Here is a link.

    Besides, I know it's for a desktop PC but the hardware ID match so it shouldn't be a problem.

    If you think that I've been useful or want to say thank you do not forget to click the White Star under my name.  It gives me congratulations and I would be very happy.

    I'll keep an eye out for your next answer; Have a great day!

  • my memory card for my digital camera does not work when I put it in the memory card slot

    I use vista and a emachine El 1200-07w. It worked last week I just stuck the memory card and a menu pops up saying what are the options I could do (for example, open the folder, etc.) now, when I put the memory card in nothing happens, but if the memory card is in when the computer is turned on, then he will say new hardware detected but it can't find a driver for it. Why is it does not work now, but was last week and how the hell can solve this problem. I have no software for my digital camera, I always just went out the memory card it stuck in the memory card slot and it was very good. It's just a less expensive memory card (Lexar) I have a 2 GB and 128 MB and will no longer work. Thanks for any help!

    Hi, I hope you can follow this. Remove the storage card from the computer, then go to control panel
    then
    Device Manager
    Expand portable devices
    the type of memory card slots should be listed if your type is a yellow triangle in it,
    Right-click on it and choose uninstall.
    It should reinstall it automatically or when you put the memory card in the slot.
    This type of fault is often caused by not using material on the taskbar does not safely remove request.

  • Adobe Digital Editions does not open

    I just got a new hard drive for my laptop since the death of the former.

    The first thing I did was to install Adobe Digital Editions 2.0 because I read all the time. But now I can't open the program.

    It starts fine where he said he is in charge of the library, but he doesn't go anywhere from there.

    I tried to uninstall, reinstall, uninstall, reboot, reinstall, etc etc and nothing works, I tried looking for the pit the helpdesk but nothing seems to help.

    I tried Digital Editions (the old black version) but that you keep effing up and jump around in my library without asking him.

    What can I do?

    I tried other epub readers, but none has the design and settings I wan't.

    Oh and I win 8 on my laptop, and I got 8 win before my harddrive effed place.

    Sorry for mistakes in spelling and grammar, but I'm not English, I'm Danish

    Your English is excellent.

    I remember an International Conference, that my brother-in-law went.

    Someone asked a question in bad English.

    A pompous English person complained and said "this conference language is English.

    A Dane has replied, "no, the official language of the conference is broken English."

    ~~~

    By the "old black" I guess you want say v1.7.2 ADE (Adobe Digital Editions).

    When ADE2.0 does not work, it is the one that usually, I suggest that it is much more reliable, but sounds as if you tried.

    Just in case where the link below.

    ~~~

    I suggest you

    > Uninstall all copies of the ADE.

    > If you don't have a backup of your books, first make a backup of all the books.

    > Check for any which left out folder and delete it. for example

    1. C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Adobe\Adobe Digital Editions
    2. C:\Program Files\Adobe\Adobe Digital Editions
    3. C:\Program Files\Adobe\Adobe Digital Editions 2.0
    4. C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Adobe\Adobe Digital Editions 2.0
    5. \AppData\Roaming\Adobe\Digital Editions C:\Users\
    6. C:\Users\\Documents\My Digital Editions

    It may not be possible to keep your old library structure, I don't know how important it is also you.

    In the same way all the notes and annotations.

    > Try again...

    1. Reinstall the ADE.  (I'd use as more reliable 1.7.2, but 2.0 if there are all the new features you really need)
    2. Run ADE and remove all memory that it can have permissions (ctrl-shift-D and respond to the prompts)
      It is often half remember and confuses things.
    3. Restart ADE
    4. Allow the ADE with your Adobe ID

    held og lykke

    ~~~

    Version 1.7.2, is a little hard to find, available on the website of Adobe for Windows and for Mac.

    http://helpx.Adobe.com/Digital-Editions/KB/cant-install-digital-editions.html

    The forum software is sometimes corrupt the link above.  It should not be a white in "editio ns.  What follows is a redirect to the same page: http://tinyurl.com/diged172

  • Qosmio F750 - USB 3 G modem does not work

    Hello

    I recently purchased a Qosmio F750-11N and everything worked well.
    I can access any wireless internet access and all is well, except that I can't use any 3g usb modem.
    I don't have dsl in my home so I use 3g internet TMN with a usb modem external style pen.
    All my other toshiba to run the Internet very well without any problems.

    I insert the pen and the usual installer comes up, installs, PSI program and everything's fine. When I go to connect, it says usb modem unavailable. I have updated drivers and all. I have 64-bit windows 7.
    If I try to go to my network and try to activate the usb modem he says something on remote access does not. If I click on properties it says unexpected error.

    The usb modem is listed under the Manager.
    What can I do? Ask for details if necessary.

    Hi Renato

    Please don t get me wrong, but you probably know that Toshiba doesn't support third party hardware or software. All Toshiba in your case is compatible is the feature USB port and in your assignment is described clearly that the USB port is working.

    When possible try to contact your internet provider and ask for assistance. They have the best experience with own hardware and software, especially with the configuration of the software.

  • Satellite A300 - dvd, usb and card reader does not work

    Help needed please.

    Have a laptop Satellite A300, running vista.

    Until a few weeks ago everything good, then noticed the cd did you not recognized and disk in it. The card reader can't find anything on the card (and Yes, the card was full.)

    The usb scanner is recognized as an external memory card and the other usb port does not fuction.

    I have not installed or don't remember changing of settings or do whatever it is the habit.

    Any help or thoughts would be appreciated.

    Hello

    Your ad is very confused.
    > Until a few weeks ago everything good, then noticed the cd did you not recognized and disk in it.
    Well, there are several reasons for this; It would be possible that the inserted disc is not completely compatible. Try different drives from different manufacturers.
    It would also be possible that the STRANGE laser lens is dirty. In this case, you might clean using a cotton ball and alcohol tip. In my case it helped.

    > The card reader can't find anything on the card (and Yes, the card was full).
    Did you use a compatible card? The laptop runs these cards:
    8MB - 2 GB SD card
    SDHC - 4 GB card
    -16 MB - 2 GB xD Picture card
    Memory Stick - 8MB - 256MB
    Memory Stick Pro - 256 MB - 2 GB
    MultiMediaCard - 8 MB - 1 GB
    miniSD (with SD adapter) - 32 MB - 2 GB

    I recommend also to format the card and to copy files from computer, and then test this.
    You can also reinstall and update the driver for the card reader controller...

    > The usb scanner is recognized as an external memory card
    Can't believe that you must use a scanner software (must be provided with the scanner) and have to test this unit. By the way; for the most part a scanner driver must be installed in order to use this

Maybe you are looking for

  • Satellite NB10T-A-102 - horrible sound quality

    Hello I bought a NB10T-A-102, but the sound is horrible almost not not tuned because that sounds like metal noise.I tried to change driver but without advantage.Do you know if it's because of the speakers of material or if there is a configuration th

  • HP Probook T3L12UT #ABA G3 450: Audio driver issues after update of Windows 10 anniversary

    After upgrading the operating system Windows (10.0.14393), Conexant driver failed. No device installed. Also in the Device Manager, Intel High Definition Audio is missing a driver. Cannot find a copy (grouped with another driver... video perhaps). In

  • 'info' iPhoto causes crash

    When I click on info button down right in iPhoto to verify the data on a specific photo or, for example, to add a name to a face not identified, information panel appears briefly and then blocks the iPhoto application.  I rebooted several times to ap

  • Broadcom 802.11n network adapter (code 10) does not. grrrr!

    After getting a virus and my computer reset everything (with help) and install my drivers and utilities provided by Dell, Broadcom 802.11n Natwork adapter came with a yellow warning triangle and when I look at properties says device cannot start (cod

  • Duplicate objects

    Anyone know what is the problem with vFoglight when it duplicates all objects in vCenter?  This is the second time I have seen this now and in discussions with others who run vFoglight in their shop, happened to them as well.  Not only it is a comple