05-19-2021 02:03 AM
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
07-23-2021 07:14 AM
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.
07-23-2021 11:12 PM
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
07-26-2021 05:48 AM
Hi! I had a error conection with internet this morning but I had read you, if u can, send the code pls.
07-27-2021 01:01 AM
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
07-27-2021 01:57 AM
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?