LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Controlling Dc power supply via RS232

This should be enough to get you started.

 

As already stated, you can make your own driver using VISA and the commands you need.  I highly recommend making VIs for each command you need.  That will make your coding a lot easier.


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
Download All
0 Kudos
Message 11 of 12
(473 Views)

Remember to check the following:

  1. Wire Connection from PC to Supply as shown on pg 41 of the manual
  2. Configure the RS-232 Communication settings for both the PC and Supply as shown on pages 40-41 of the manual.  Both the PC and the Supply must be the same.
  3. Using LabVIEW, load the proper VISA Configuration from step 2 then send (VISA Write) the string
    *IDN?\n
    where the \n is the newline character.
  4. Still within LabVIEW, receive (VISA Read) the response from the Supply.  It should respond with a string that starts with the following:
    ODA Technologies,EX-Series,...
    Make sure to set the Read Buffer length to 200 in length.
  5. Now end the connection (VISA Close) by wiring this to the end.
  6. This string of commands will be used over and over for sending any other SCPI commands besides just *IDN?\n. 

 

NOTE: An error will occur from the VISA Read when a command is sent that does not request a response from the Supply.  To correct this, only run the VISA Read when the command string sent to the VISA Write contains a "?".

 

Good Luck.

Help the Community (and future reviewers) by marking posts as follows:
If it helped - KUDOS
If it answers the issue - SOLUTION
0 Kudos
Message 12 of 12
(464 Views)