Instrument Control (GPIB, Serial, VISA, IVI)

cancel
Showing results for 
Search instead for 
Did you mean: 

How to connect QL355TP Power Supply

Hi Graeme Smith,

 

Were you successfully automated QL355TP? I'm trying with Python & LabView. No success so far. Could you please share your knowledge how you brought it up?

 

Thanks,

Satheesh

0 Kudos
Message 21 of 26
(1,264 Views)

Hello, I have the same error, I can send commands and I managed to set voltages, or voltage steps, etc. but I can't read the data backwards as with the * IDN command ?. Said to make a driver work, but I don't know how.

0 Kudos
Message 22 of 26
(1,206 Views)

Hi,

 

I have made it work. You need to give enough delay for the data t be available on the UART. Will share my code on Monday.

 

Satheesh

0 Kudos
Message 23 of 26
(1,188 Views)

Hi! I had a error conection with internet this morning but I had read you, if u can, send the code pls.

0 Kudos
Message 24 of 26
(1,177 Views)

Hi,

 

I have given 20ms delay to read the data.

 

serialPort_PSU.WriteLine("*IDN?");
Thread.Sleep(20);
PSU_receiveBuffer = PSU_receiveBuffer + serialPort_PSU.ReadExisting();

 

You can refer to the attached file for complete code. It's written in C#

 

Satheesh

0 Kudos
Message 25 of 26
(1,171 Views)

Ok thanks! I think I can implement this code on Pyvisa but Im new in labview, do u said that can I implement this code on labview?

0 Kudos
Message 26 of 26
(1,168 Views)