What equipment I need another for the purposes of the on/off switch, adapt output voltage/current using labview program

This is my first time to use labview, I want to use the program to control the DC power for the start/stop it or set the output to program automatically.

Now I had the (supply) instrument, got a computer with labview. I know that I have to buy a GPIB cable, making a connection between the instrument and the computer. But I do not know what to buy? Cable GPIB or GPIB controller. Confused.

Thank you

A GPIB cable, by itself, will do nothing. You need a GPIB controller connected to your pc. With the NI USB-GPIB-HS controller, you can connect directly to a single instrument and no need for a separate cable. If you go with an internal controller to a pc (i.e. PCIe), you need a cable to connect the controller to the instrument.

You can also check if the power supply has other options such as Ethernet or USB remote control.

Tags: NI Products

Similar Questions

  • What Acrobat do need me for the Bates numbering?

    which product to buy if want Ben seal and what I also subscribe or just buy software once?

    Acrobat Pro is what you need for the Bates numbering. See Acrobat help | Add headers and footers Bates numbering in PDF format

    Best,

    Sara

  • What persistence tool is better for the purposes of consistency?

    What persistence tool is better for the purposes of consistency? TopLink and Hibernate?

    What are the advantage and disadvantage of using?

    Thank you

    TopLink Essentials, as a product of JBoss Hibernate is a framework of persistence object / relational open-source or layer is used in Java applications. While both products strives to offer a non-intrusive, highly flexible and powerful solution there are a of the key differences.

    * TopLink Essentials, derived from Oracle TopLink has been in production Java applications scale for large scale deployments and transaction volumes for more than a decade. This reliability in conjunction with a set of features has evolved through close partnerships with customers led to it a excellent performance and scaling of the solution of persistence as offering rich flexibility to configure mappings and customize the runtime behavior in support of a wide variety of database and application deployments. Customers with a certain degree of complexity in the domain model or the relationship patterns, especially where change the schema is not an option, will benefit from the flexibility and the character experienced TopLink.
    * TopLink caching solution is based on caching the entity mapped instead of breaking down the data in raw art works. This storage in the format required by the application provides huge benefits in most usage scenarios. In addition, the TopLink cache is very flexible in its configuration and its control by entity type.
    TopLink society is open to a friendly match with the forums without restrictions served by experienced and personal management development who has been with the product throughout its existence. Offers support services and Oracle TopLink to backup are qualified and offer global coverage.
    As the the TopLink JPA reference implementation provides the first implementation certified to this new standard. In addition to providing some useful value-added functionality. Moving forward this project open source will continue to innovate on the basis of contributions from Oracle, Sun and others.
    Help of TopLink Essentials will provide you with a rich ORM solution based on JPA standard. It will allow you also to seamlessly switch to offering of Oracle TopLink and benefit from many advanced ORM features.

  • Perhaps what software I need to keep the computer for daily maintenance?

    Hello

    I would like to know what software should I get for the performance of the computers? Prevents the gel, messages of error, CrashJe, errors in registry etc... I don't want to do in the future. Who can keep my computer running fast. Please help me. Your help will be very appreciated.

    Thank you

    You are welcome.

  • I need help for the upgrade of my current system.

    I need help for the upgrade of my current system.

    I have SBS 2008 with (Exch 2007, SQL 2005, Sharepoint, backupexec 2010 for sbs) licenses.

    I want to make the larger environment using the following:

    (1) apply Virtualization

    (2) apply to the failover process (clustering)

    "(3) the environment must support adding server terminal server, ERP server, exchange server, domain controller, backup manager.

    Storage 4) that supports Raid (1 and 5)

    UTM excellent 6) that supports (SSL VPN, VPN Global)

    suitable backup solution 7)

    (8) good antivirus for clients

    my questions:

    (1) can you provide me with a good design for this environment

    (2) should I choose what operating system:

    Microsoft datacenter or company

    I know datacenter provide us the unlimited VM but needs per processor license

    so if I have two Grouped servers I want to buy 4 licenses

    and just 4 VMs per company license... to say that we have two servers and maintain 8 vms so wat happened if 1 goes down... How can I migrate the 4 virtual machines on the server failed to another server group... ? should I buy enterprise license?

    (3) if I get the SAN storage for data... How can I save this storage... should I get another SAN?

    (4) how can I upgrade SBS stad single server (windows standrad) without losing the licenses as Exch 2007, SQL 2005, sharepoint.is it a must to buy an edition full std server or there is a way to upgrade (license wise, I mean)?

    (5) what about win2k8 license for VM:

    lets say we have physical that has windows license so that enough to have windows for VM or should I buy windows for VM licenses?

    (6) can I use backExec license for SBS with windows 2008 standard

    (7) who better to virtualization AMD or INTEL

    (8) hyper V or VMware?

    (9) what of Microsoft data protection Manager... is this good?

    (10) what virtual machine manager? What are the benefites keys

    Thanks in advance

    Hello AnasAI,

    You can find the Server forums on TechNet support, please create a new post at the following link:

    http://social.technet.Microsoft.com/forums/en/category/WindowsServer/

  • Guard application launch at the start of the appliance, also need advice for the implementation of network methods

    Hi all

    I'm new to the development of Blackberry and I'm writing a relatively simple application to run on 7.1.

    So far the development was interesting, I managed to create my user interface using resources online (mainly this forum), but today I tried to implement some of the network classes that I need and now I just met constant problems.

    I use Eclipse SDK 3.7.2 (the one that comes with the plugin RIM)

    First question:

    I'm not sure what I changed, but today I noticed that whenever I start the Simulator (by sim 9360) my application is started during the initial startup process. I don't think he did this before, but to be honest, I wasn't paying much attention. I think it starts at the start of the device is because I put a breakpoint in the constructor for my class from the main screen, which is hit before the Simulator happens even to the point where it is ready for user interaction. In addition, once it is ready, if I press the BB button, I see my registered application.

    I don't have it set to automatic start in .xml descriptior enforcement.

    I started this application on the HelloBlackBerry sample, here is my main method for the entry of the application:

    public static void main( String[] args ) {
            appSettings = AppSettings.fetch();
            // Create a new instance of the application and make the currently
            // running thread the application's event dispatch thread.
            HelloBlackBerry theApp = new HelloBlackBerry();
            theApp.enterEventDispatcher();
            //openConnection();
    
        }
    
    
    

    As far as I know, this is the only entry point for the application.

    More code

        public HelloBlackBerry() {
            // Push a screen onto the UI stack for rendering.
            mainScreen = new ScreenHelloBlackBerry();
            pushScreen( mainScreen );
        }
    

    Here is the method of. my class AppSettings fetch()

        // Retrieves a copy of the effective properties set from storage.
        public static AppSettings fetch()
        {
            AppSettings savedSettings = (AppSettings) _store.getContents();
            return new AppSettings(savedSettings);
        }
    

    Some of this code that I wrote myself, the persistence store cause the launch of my car?

    I tried to reset the Simulator to the factory settings, no change.

    All applications initialized during the startup of the device and then closed shortly after?

    Part 2: Need advice for the implementation of functions of network in the application

    I need to implement some methods that will retrieve data from a web service, and I also need to send data to this service. What I've read, the ConnectionFactory is the way to go. I want my application to make a request when the application is open and can check on a set interval. I didn't know exactly how to go about adding another thread for networking, I understand that network connections should not be created on the thread main event, so I tried to do this:

    The constructor of my class that implements screen (ScreenHelloBlackBerry), I use the following to create a modal dialog box to prompt the user for a username, I also try networking wire in the same segment of spawning:

            public ScreenHelloBlackBerry(){...initialize fields and managers, add it all together...then near the end
    
    //This will open the confirm dialog when the application is launched
            UiApplication.getUiApplication().invokeLater(new Runnable() {
                  public void run() {
                      openConfirmDialog();
                    //start connection - Possibly broken
                      ConnectionThread ct = new ConnectionThread();
                      ct.start();
                  }
            });
    

    I don't know if it's somehow OK to do, but it seems to work for what I need. I want a user who launches the application at the prompt, and if a user switch applications, when they come back they wondered again (unless they close the app and reopen it).

    Here is my ConnectionThread:

    public class ConnectionThread extends Thread
    {
    
        public void run()
        {
    
              ConnectionFactory connFact = new ConnectionFactory();
              ConnectionDescriptor connDesc;
              connDesc = connFact.getConnection("http://www.google.com");
              if (connDesc != null)
              {
                  HttpConnection httpConn;
                  httpConn = (HttpConnection)connDesc.getConnection();
                  try
                  {
                      final int iResponseCode = httpConn.getResponseCode();
                      UiApplication.getUiApplication().invokeLater(new Runnable()
                      {
                          public void run()
                          {
                              Dialog.alert("Response code: " +
                                            Integer.toString(iResponseCode));
    
                          }
                       });
                      httpConn.close();
    
                   }
                   catch (IOException e)
                   {
                     System.err.println("Caught IOException: "
                          + e.getMessage());
                   }
              }
        }
    }
    

    At the moment it has basically unmodified code from a sample that I found, I'll be retooling to meet my needs whenever I can make it work. I HAD this work to the point where, after the closed user confirm this dialog, a few moments later a an alert dialog appears with the 302 response code. I don't know what changed, but now it doesn't work at all, and if I try to scroll with the debugger, I can't past the httpCon.getResponseCode (). I've seen some mistakes earlier on "no record of service was set up", and I also had once a timeout exception.

    I'm sure I'm doing this wrong, but at the same time as I said WAS working, and now it is not. If someone has done this far, thank you very much for your time and advice are much appreciated.

    Also, should I try to start the thread of the network of the UIApplication class instead of the screen? There is currently very little happening in the class that extends UIApplication, do I spend most of my business logic out of the class of the screen and in the UIApplication class?

    Thanks in advance!

    Hi all

    Just to conclude this topic for those who are interested, I found an excellent guide to the implementation of networks in applications of BB, click here for a link.

    About my application being started at the start of the simulator of the device, I found that on a device real this behavior is not complied with, and in addition, the behaviour seems to have stopped after uninstallation and reinstallation of my Simulator.

    See you soon,.

  • What services do need me for a wireless network running?

    Original title: wireless network.

    What services do need me for a wireless network running? Or is completely managed by the modem provided from my ISP?

    Assuming that you have manually stopped no Windows services, your PC is in good condition, and is equipped with a wireless transmitter/receiver, other than to locate your modem in the list of available wireless signals and by entering the password, you have nothing to do... :-)

  • What files are needed to access the aspect of the heritage of GarageBand?

    What files are needed to access the aspect of the heritage of GarageBand? After the upgrade my MacBook Pro and Mac Pro, the appearance of the inheritance is only accessible to the general public on the MacBook Pro. What files are needed for these instruments of the legacy and the filters on my MacPro? I read that the removal and reinstallation of GarageBand 6.05 will do but 6.05 GB certificates have expired and is no longer allow it to be installed. Any help is greatly appreciated.

    I read that the removal and reinstallation of GarageBand 6.05 will do but 6.05 GB certificates have expired and is no longer allow it to be installed. Any help is greatly appreciated.

    You always have an installer for GarageBand 11?  An installation of iLife 11 DVD or the DVD Installer original system for snowLeopard with applications for funding?

    You can install GarageBand 11 of these media, if you set the date system your mac to a date until the installer has been released. Then, the certificate will be valid.

    the appearance of the inheritance is only accessible to the general public on the MacBook Pro.

    But because of legacy patches are available on your MacBook pro, you can copy all the missing files from the library of the Instrument and loop library in your other Mac.

    Compare these files in the folder/library on your system drive on Mac of high level.

    The instrument library: Library/Library/Application Support/GarageBand/Instrument.

    and loop library: / Library/Audio/Apple Loops/Apple /.

    Copy all the files to the corresponding folders on your MacBook Pro that is not there.

  • need drivers for the following!

    need driver for the following equipment. in fact, it shows as unknown device in my Hp probook g1 450 4th generation i5.

    ACPI\HPQ6007
    * HPQ6007

    I would be happy if you please give me the link of the drivers.

    You need HP 3D DriveGuard on your list of pilot. Choose which operating system you are running and you will pass to the right page:

    http://h20566.www2.HP.com/portal/site/hpsc/public/PSI/swdHome/?cc=us&lang=en&sp4ts.Oid=5405426&AC.admitted=1412400073783.876444892.199480143

  • How to check what Qt application is run for the first time?

    How to check what Qt application is run for the first time? I need for the creation of trial version of my application. Any help is greatly appreciated

    Probably use file data and put an I_ran_at_least_one_time file and verify its existence. This file is not accessible to the user and is not changed even if you upgrade the application.

  • Photoshop CS6 crashes when starting my Mac. Reset preferences does not help. Download CS6 again if I have my serial number? And what do I need to uninstall the version crashed everything first?

    Photoshop CS6 crashes when starting my Mac. Reset preferences does not help. Download CS6 again if I have my serial number? And what do I need to uninstall the version crashed everything first?

    Hi christophp,

    Yes, you can do this, please follow the steps.

    Uninstall the existing version for Photoshop

    Then use the Adobe CC cleaning tool to remove files left link: http://download.macromedia.com/SupportTools/Cleaner/mac/AdobeCreativeCloudCleanerTool.dmg

    Restart the system

    Follow the link and download Photoshop CS6: applications download Creative Suite 6

    Enter the serial number to activate it.

    Let us know if that helps.

    Kind regards

    ~ Mohit

  • What is my access code for the software updates

    What is my access code for the software updates?  It seems to be a six-digit numeric code, but I have no recollection of anyone establishing.

    Take a look at this thread, what is the password for software update

  • what external storage is good for the iPhone 6 more

    what external storage is good for the iPhone 6 more

    Try doing a Google search. It will give you many hits on it.

  • What does PS vs HQ for the cam action SONY in video resolution?

    What does PS vs HQ for the cam action SONY in video resolution?

    in AS100 - nothing. It doubles the framerate - 60-30 NTSC and PAL of 25-50

  • Need drivers for the Sidewinder Precision Pro X 03-57540

    I NEED DRIVERS FOR THE SIDEWINDER PRECISION PRO XO3-57540 JOY STICK.

    Hi LARRYPEDEN,

    Visit the following link to download the driver:

    http://www.Microsoft.com/hardware/en-us/d/SideWinder-X3-mouse

    You can also follow this step to do the same thing:

    a. double-click the type of device you want to update or change.

    b. right click on the device driver specific, you want to update or change.

    c. click put to update driver to open the Hardware Update Wizard. Follow the instructions in the wizard.

    More information on:

    How to manage devices in Windows XP

Maybe you are looking for

  • Go to the missing group

    Greetings, I was successfully consolidate my tabs in new group among many many created group tabs, then an accident happened after that visit a Web site requires Flash Player and Java plugin. Windows 7 error reported for container plugin and Firefox

  • Think the L171p 9417-HB2 pilot Vision

    Where can I find download driver monitor L171p 9417-HB2? Know that it's a plug-and-play monitor, but I want to install the driver for this monitor

  • HP Officejet 7610 all-in-one. where to place an item on the glass tray to copy?

    On the glass plate of the scanner, place the photo to scan? All I get is color bars...

  • DISPLAY DRIVER NO LONGER WORKS

    I TRY to PLAY A PC GAME or a MMORPG online BUT IT CRASHES ON THE GAME BACK to WINDOWS AND I GET a MESSAGE of ERROR WHO to BED "DISPLAY DRIVER STOPPED RESPONDING BUT has now RECOVERED", what is GOING on IN a FEW MINUTES TO START THE GAME AND IS ALWAYS

  • How to add data to a remote database in mobile application?

    Hello! I develop a stuck with a problem online, using Adobe flex.but photo album... My question is: I want to create a database in such a way that each user can sign up/login to download albums mancunts and can add new friends from existing users.so