Using HP E2050 HPIb gateway with labview

Hi,
I was wondering if it is possible to use an HP E2050 Ethernet-HPIB
gateway (interface) with Labview. National Instruments has a similar
product (a GPIB-Ethernet interface), but I was wondering if it was
possible to use the HP product since I have a whole bunch of them lying
around.
Thanks,
Prasun Chaudhuri

"Chaudhuri, Prasun [WDLN2:2M22:EXCH]" wrote:
>Hi,>>I was wondering if it is possible to use an HP E2050 Ethernet-HPIB>gateway
(interface) with Labview. National Instruments has a similar>product (a GPIB-Ethernet
interface), but I was wondering if it was>possible to use the HP product
since I have a whole bunch of them lying>around.>>Thanks,>Prasun Chaudhuri>
Prasun,
If the HP Gateway has a VISA interface, i.e. you can interact with it through
VISA calls then you should be able to use it in LabVIEW after installing
HP-VISA. I've never tried it but it might be worth looking into.
Kamran Shah
National Instruments

Similar Messages

  • Can I use third party DAQ boards with Labview real time?

    I have an Adlink DAQ 2010 card that I curently use with labview. Will this card also work with Labview real time? What requironments are there for 3rd party cards to work with Labview real time?
    Thanks!

    Hello George,
         Here is a great link for you to take a look at: Can I Use a Third-Party Device with LabVIEW RT?
    Have a great day,
    NathanT

  • Using a lan/hpib gateway (Agilent) with a NI GPIB pci card

    Need to be able to use a E2050 lan/hp-ib gateway (Agilent) together with a NI GPIB pci card on the same workstation (windows). I need 2 seperate gpib busses but also need the remote functionality or the lan/hpib box. I would use ni enet but it will not work together with a installed gpib card, only one or the other. Read information on useing an hp card with a ni card in the same system but cannot get it to work with the lan box. I do not have a hp card to install in my computer to see if that works or not. Has anyone attempted a similar task?

    Hello-
    It is possible to use a PCI and ENET board in Windows 9X/ME. The solution for Windows NT/2000 is to use the new VISA server technology using two computers.
    Computer A:
    This is a computer that will not use a GPIB plug-in board, but is on the network. Install the GPIB-ENET/100 driver and VISA 2.6. Then, set the appropriate VISA server permissions and run VISAServer.exe (see the VISA Programmer's Reference for more details ni.com/manuals).
    Computer B:
    Install the PCI-GPIB driver and VISA 2.6. Use Remote VISA to access the ENET/100 through the other computer's driver.
    This is also a very useful technology for remotely controlling numerous instruments throughout a distributed laboratory.
    Randy Solomonson
    Application Engineer
    Natio
    nal Instruments

  • Using pixelink software development kit with labview

    hi,
    i am currently using the pixelink camera pl b741 f, however i am facing a problem when i use the "get frame dll" in labview.
    my program works when in highlight execution mode, however when i run it in normal mode i get the following message:
    Labview: an exception occurred within the external code called by a library node function node. This might have corrupted labview's memory. Save any work to a new location and restart labview. VI "amol_getimage.vi" was stopped at node "" at a call to "MEPU- acquisition-getframe .vi"
    can you please help me!
    thanks
    amol

    amolchoudhary wrote:
    hi,
    i am currently using the pixelink camera pl b741 f, however i am facing a problem when i use the "get frame dll" in labview.
    my program works when in highlight execution mode, however when i run it in normal mode i get the following message:
    Labview: an exception occurred within the external code called by a library node function node. This might have corrupted labview's memory. Save any work to a new location and restart labview. VI "amol_getimage.vi" was stopped at node "" at a call to "MEPU- acquisition-getframe .vi"
    can you please help me!
    It's simple! You made an error in the configuration of your Call Library Node. It could be a number of reasons but the two most likely ones are that you get a variable wrong to be passed by Value while it should be by Reference or vice versa, or that you call the function which expects a buffer it can write in the results (the image frame is a likely candiate) and didn't create a large enough buffer in LabVIEW to be passed to the function.
    I actually think this last one is by far the most likely reason here and in fact the number 1 error done by most people that try to interface to a DLL through the Call Library Node. DLLs come from the C world and want to be called like that and one important rule there is that memory buffers to be filled, must always be created by the caller. This is different in LabVIEW itself since LabVIEW manages all the memory for you and allocates it whenver necessary but this can't work for calling DLLs as LabVIEW has ABSOLUTELY no way to know what a DLL function might need as memory buffer.
    You can create such a buffer by either executing the Initialize Array function with the correct parameters or in LabVIEW 8.2 you can directly configure array and string parameters in the Call Library Node configuration to create the necessary buffer. I prefer the Initialize Array variant since the other one is a LabVIEW 8.2 only feature and creates a fixed size buffer while for your frame buffer you will likely have to allocate a memory buffer whose minimum size depends on the bitmap format and bitmap size the function is going to return.
    Rolf Kalbermatter
    Message Edited by rolfk on 06-29-2007 07:27 PM
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Can I use a DAQ PCI-1200 with Labview 5.0.1?

    I have a Labview 5.0.1 software, and I want to use PCI-1200 with it. Can I do that? My OS is Windows XP, but I can change it with Windows98/2000.

    Hello jhylee,
    The latest NI-DAQ driver for the PCI-1200 is 6.9.3, which is compatible with LabVIEW 5.0.1. LabVIEW 5.0.1 supports Windows 2000, but not Windows XP (although it may still run).
    Have a nice day!
    Robert M
    Applications Engineer
    National Instruments
    Robert Mortensen
    Software Engineer
    National Instruments

  • Using Microsoft Message Queues (MSMQ) with LabVIEW

    I want to use the Microsoft Message Queue to communicate between applications on different machines. Does anybody have experience in using the MSMQ with Labview (in the .NET framework)? How do I send messages? The MessageQueue.Send method requires an object, and I don't know how to create this object format.
    This question was asked several years ago on this forum and no answer was given.
    I would appreciate any examples of Create a Queue, Delete a Queue,  Send a Message, and Read a Message in LabVIEW 7 or earlier.
    Thanks,

    P.C.
    I'm a little confused by what you mean.  I thought you were sending messages through the MSMQ, but the code there would receive a message, get the body, then display the body of the message.  The Object that the invoke node refers to is the Body of the Message, which has no properties, but has a few methods like ToString that you can use to get the string from the Body. 
    You need to wire up the references into the invoke and property nodes to get the selection of the methods or properties that are available.  Do they just not appear when you are using the invoke node with a reference to the body?
    Message Edited by Coal Man on 06-04-2007 01:56 PM
    Brian Coalson
    Software Engineer
    National Instruments
    Attachments:
    msmq.Jpg ‏40 KB

  • How can I make DAQ VIs visible when using NI-DAQ 4.9 with LabVIEW 6.0?

    My operational system is Windows 98, I am using a AT-DSP2200 card and is configured. I have installed a NI-DAQ 4.9 (the last for this card) and I use Labview 6.0, but I can not find the DAQ VIs on the functions palette. How can I solve this?

    Hello;
    That version of the driver is too old to work with Labview 6i. The oldest version of NI-DAQ that one can combine with Labview 6i is version 6.1.
    You will need either to use another version of Labview, or to investigate a replacement hardware that you can use with newer versions of NI-DAQ.
    Regards
    Filipe A.
    Applications Engineer
    National Instruments

  • Using Requirements Gateway with LabVIEW classes

    Does anyone know how to get the NI Requirements Gateway to read coverage information from the documentation contained in a LabVIEW class (.lvclass)?
    Requirements Gateway appears to load the documentation content fine from VIs, controls, .llb, .lvlib, .lvproj etc, but not .lvclass? My LabVIEW keeps crashing out when I try to point Requirements Gateway at a project with .lvclass files!
    If this can't be done then is there a neat way to add requirements coverage information (you know, the "Covers: ID" field) into the class properties, or something near the class maybe, that Requirements Gateway can read?
    Thoric (CLA, CLED, CTD and LabVIEW Champion)
    Solved!
    Go to Solution.

    Hi Manooch,
    Thank you for your prompt reply. The example you attached, with a little alteration to include the coverage ID tag in the class documentation field, does precisely what I need, thank you. The snapshot below shows the LabVIEW class satisfying requirement 2:
    However, this doesn't work in my project. I have similar content, and when I ask Requirements Gateway to analyse the project it shows nothing and then LabVIEW crashes! I'll have to try stripping my project down to the bare bones to find the problematic element. I hate it when this happens....
    Thoric (CLA, CLED, CTD and LabVIEW Champion)

  • Issues with using Embedded PL SQL Gateway with Apex 4.2

    Hi,
    I have installed Oracle 11g R2 and want to develop an application using Apex 4.2 (needs upgrade from 3.2 version which has come bundled).
    For the server, I would like to use the Oracle HTTP server, but it seems to require a separate license as against the same in Oracle10g.
    I would like to know what are the performance related issues b/w using the embedded PL/SQL Gateway (Oracle XML DB HTTP Server) that comes with Oracle 11g R2 as against the HTTP Server found as a part of the fusion middleware bundle. Is it wise to procure the license for HTTP Server?
    Details:
    DB OS: Windows 7 (64 bit) (DB and Apex are on the same machine)
    Number Of Users of application: 10-20
    Application is mainly used more for keeping track of details as against heavy processing or the like
    Thanks

    For the server, I would like to use the Oracle HTTP server, but it seems to require a separate license as against the same in Oracle10g.What gives you this impression? The licensing position remains the same: OHS is covered by the DB license if OHS is run on the same server. See Joel's post and the document he links to: +{message:id=9256804}+.

  • How can I use my Keithley 2100 DMM with LabVIEW 7 Express?

    How can I communicate with Keithley 2100 digital multimeter using LabVIEW 7.0?

    Hi,
    There are a number of ways,
    1) Unfortunately the driver on the Keithley site is for labview version 8.0, so you could speak to keithley to see if they can provide a ver7.0 of the instrument driver
    2) You could use the version for the 2000 model from the NI website
    http://sine.ni.com/apps/utf8/niid_web_display.down​load_page?p_id_guid=E3B19B3E90B0659CE034080020E748​...
    There is a version 7.0 which you could modify to suit the 2100
    3) Use the VISA vi's and create your own driver using the user manual for the bus commands to driver the instrument.
    Hope this helps
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • Has anyone used an USB ASIO driver with LabVIEW ?

    Anyone has already tried to use LabVIEW to get data from USB audio recording equipment (M-Audio Quattro)?
    RKO

    Hi,
    NI-VISA 3.0 is the only driver in LabVIEW that would give you access to an USB device. You would probably use NI-VISA USB Raw mode.
    To use the VISA driver you need to know in detail how the device works and how to program with USB. There isn't too much documentation, but if you are clear on those two things it should be easier to get familiar with the NI-VISA API.
    You'll need the USB specification (www.usb.org). Also check the NI-VISA Programmer Reference Manual
    Hope this is what you are looking for.
    DiegoF
    National Instruments.

  • How to use ExpressionEdit Control in teststand with labview

    Hi
    I am trying to get the ExpressionEdit Control to work in a labview custom step in teststand, but i have no idea how it works and cant find a solution.
    What I need is a simple example.

    Hi,
      that would really depend on how you want to use it. Do you just want the text from it? In which case there's a property of Text you can get from the control. Architect your code so that when you hit your OK button etc, it grabs the "text" information from the control.
    All of the properties and methods are documents (right click the control's fpterm on the block diagram, create >> property (so it created a property node for the activeX control, not a property for the LV control it's buried in) and select things like Text, or an invoke node, and things like DisplayBrowseExprDialog.
    You can then right click those, and go to "help for ...." for that property or method.
    Unless we know what you propose to use it for, then we can't really help with sample code, since it might not be applicable to your setup. (i.e. text out versus evaluation of the expression, versus displaying the browse expression dialog etc).
    You'll probably need to write to the context property to get the correct sequence context to browse with (pass in the "thiscontext" to your vi, and write to the context property of the dialog box.)
    Hope that helps
    Thanks
    Sacha.
    // it takes almost no time to rate an answer

  • How to use Extech Instruments model 407123 with Labview 7.1

    I am pretty new to Labview.  With the help of this forum I was able to configure my DAQpad 6020E with my Labview 7.1.
    Now I am looking at using an Extech Instruments Hot Wire Thermo-Anemometer (407123) in my experiment and running it through Labview.  Based on my research, I was led to believe that I should use the Instrument Assistant I/O and NI-Visa, but I am having a lot of difficulties.  First off, the Thermo-anemometer is wired for RS232 and I have it connected to an RS232 to USB converter, which is then plugged into my computer.  I have the driver for the converter.  When I plug the thermo-anemometer into my computer, MAX reads it as a serial port and it is listed as COM3.  MAX claims that the device is working properly.  However, when I run Labview's Instrument Assistant I/O, and tell it to read data I get a bff0015 error and it says that the device timed out.  I have tried changing the time and I still get the same error.  I am assuming this means that Labview and my device are not communicating.
    I have seen some mention of instrumentation drivers, but I haven't been able to find any for my particular device.  I am assuming that is the root of my problem, and that if I had an instrument driver to run my device in Labview that it would work properly.  So here are my questions.
    1)  What do I need to take data from a third party thermo-anemometer in Labview?
    2)  Am I correct in thinking I need some sort of instrument driver?  And if so, where could I find one (I have already searched for one and did not find it)?
    3)  Is it possible and practical to take data through Labview from a DAQpad and a third party instrument at the same time?
    4)  Are there any guides or tutorials I could use that may show me how to accomplish what I'm trying to do?
    Thanks.
    Solved!
    Go to Solution.

    I've been trying numerous things to get this to work, and I've had little luck in getting exactly what I want.  I have been able to get data from some example VI's designed for serial read, and I was able to tweak them some, but this data seems to be only able to be saved to a .txt file.  I want the data from my anemometer to be read along with the time it was read and stored in a spreadsheet.
    Instrument I/O Assistant appears to have exactly what I need to do this, but I can't get it to work.  I keep getting the bff0015 error, which is that the device timed out before the operation completed.  I don't understand why it is doing this, or how to stop it, because I am able to get data from the device otherwise.  In fact, following these steps I can see the exact data I want:
    1.  Open Instrument I/O Assistant
    2.  On "Select Instrument" I select the correct port and then click "properties"
    3.  At the top corner of the window I click "Open VISA Session"
    4.  Once there, I go to the "Basic I/O" tab.  Within that tab I click the "Read" tab.
    Please see attached screenshots if you want to see what I'm talking about below.
    At this point I can read the data from my device.  The default count value is 1024 bits.  If I click "execute" the device is read and I can read the data in the textbox that says "buffer."  However, my device only makes one 16-bit reading every 1.6 seconds, so I have to let the device sit for some time before it can fill the buffer up with 1024 bits.  If I don't, the reading takes place, I can see all of my data in the buffer, but the "Return Count" value on the screen is something significantly less than the "Count" value.  This makes sense because the buffer did not have time to fill.  Needless to say, the "Return Value" says "bff0015" which means it would return the time-out error.
    If I wait for the full time for the buffer to fill, OR if I change the "count" value to something significantly lower, say... 32 bits, the buffer "fills" much faster, the "return count" count is correct, and the "return value" reads "3FFF0006" which I assume is a standard code meaning everything went correctly.  I also notice that if I wait long enough, the buffer will continue to fill, and I can click "Execute" many times rapidly and get readings instantly.  I can tell that the program is just reading data stored in the buffer when it doesn't take a second to perform the reading, and if I continue to click "Execute" rapidly, I will eventually expend the data stored in the buffer and I will start to see the "fresh" readings again.
    So here is my question.  How do I lower the expected "count" value in the actual "Instrument I/O Assistant"?  I can do it in the "Open VISA session" under properties, but the only thing I can change in the Instrument I/O Assistant is the timeout value, but even when I set the value to 5 minutes, I still get the time out error.  What else can I do?
    Attachments:
    Instrument IO view select.pdf ‏119 KB
    Instrument IO view read.pdf ‏125 KB

  • I want to use an old Daqcard 1200 with Labview 8.5. Where is the driver?

    I'm using Labview 8.5. I have an old Daqcard 1200 and there doesn't seem to be a driver for it. I downloaded an older version of NI-DAQ that claimed to have support for that card, but when I tried to install it wanted me to uninstall my newer version. Is there a way to use this card without going back to an ancient version of NI-DAQ?

    Unless there is some specific technical problem with interfacing to the old equipment, I don't think it is unreasonable at all to expect them to include drivers for legacy equipment. It would cost them very little to throw a few extra drivers into a package that encompasses their whole product line anyway, other than the missed opportunity costs associated with not selling new equipment in a few rare cases (which is probably what this is really about) .
    NI will probably explain better than i do. in general, they changed the way the DAQ driver operates, introducing also DAQmx. this is incompatible with the old way of functionning. for you, it forces you to choose the driver version to use.
    But anyway, it's not worth it for me to set up a machine just to run this thing. I'm just going to trash it. Thanks for the help.
    why dont you sell it over ebay? there are quite a bit that would love using it, for cheap enough. for example, this was one of the latest cards exhibiting 3 counters, operating differently than the modern version. it has its usefullness...Also, if this is the only one card installed in the computer, you wont miss anything with the new drivers
    ... And here's where I keep assorted lengths of wires...

  • How to use ELMO motion control device with LABVIEW

    Hi,
    I am
    new to LabVIEW withvery little controls
    experience (just now graduated).  I need to use LabVIEW, NI USB 6009( DAQ)
    and a Harmonica servo drive from Elmo to control a voice coil.  . What I
    am looking for is some general guidance to get me started; point me in
    the correct direction so I can get rolling.  I will be using a RS-232
    line between the Harmonica and the PC.
    I have generated a sine waveform to the NI USB 6009 from LABVIEW. I have to send this signal through the ELMO Harmonica 5/60 N to control a voice coil. I have
    been reading the Elmo SimpleIQ Software Manual and am  lost Kindly help me out. 
    Regards,
    Pawan 
    The software manual states using Interpreter Language or User
    Programming Language.  Both of the languages seem to resemble what I
    remember of C++, sort of.  The document explains "while" and "for"
    loops, etc.; however, my understanding is that I should be able to use
    LabVIEW to accomplish such tasks and then just ask LabVIEW to output a
    command to the Bassoon to control my voice coil.  My best guess is that
    I use the "System Commands" to output commands to the Bassoon although
    the software manual also mentions compiling code similar to that of
    standard programming modes.
    Please help me out.
    Thanks        

    Continued here.
    LabVIEW Champion . Do more with less code and in less time .

Maybe you are looking for

  • How do i change the background display to white with black text. It is white text on blackbackground right now

    Why is my screen display black background with white text?  How can i change back to black text on white background?

  • DVD Drive Failure

    In the last month I have had a lot of trouble with DVD/CD Combo Drive. When I do a Fresh Install from DVD or CD there is no Problem, But when I want to Play DVD then it Stalls usually using Ubuntu and VLC. How can I check it Online? We had severe Dus

  • WSDL -authentication issue

    Hi All, I have a requirement of Proxy to Soap. Client have given the below webservice.       <Id>int</Id> <Password>string</Password>       <RequestXML>string</RequestXML>     </Request>   </soap:Body> </soap:Envelope> Here i want to give the authent

  • Macbook pro won't turn, and make loud noises

    When I was watching a video on my 15inch macbook pro, the screen suddenly turned black and made the click sound that is usually only present in forced shut down. I then press the power button once, and nothing happened except for another "click" soun

  • Best approach with jsp

    hi, i have a scenario that's sending data from jsp. i have two options, soap and client java proxy. what is best approach for this?,  becasue jsp is calling java which contains coding to call webservice,  so this is similar with client java proxy. if