We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm playing with the CONFigure:VOLTage:DC from examples using pyVISA under linux against the test-tcp example.
CONFigure:VOLTage:DC
test-tcp
Python:
>>> dev.write('CONFigure:VOLTage:DC 1,3') 25 >>> dev.write('CONFigure:VOLTage:DC 1, 3') 26 >>> dev.write('CONFigure:VOLTage:DC 1 , 3') 27
test-tcp:
conf:volt:dc P1=1.000000 P2=3.000000 conf:volt:dc P1=1.000000 P2=3.000000 conf:volt:dc **ERROR: -151, "Invalid string data" P1=1.000000 P2=0.000000
The space after the 1 seems to be troublesome.
1
Interestingly if the following is done:
>>> dev.write('CONFigure:VOLTage:DC 1 , 3.0') 29
test-tcp seems happy:
conf:volt:dc P1=1.000000 P2=3.000000
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm playing with the
CONFigure:VOLTage:DC
from examples using pyVISA under linux against thetest-tcp
example.Python:
test-tcp:
The space after the
1
seems to be troublesome.Interestingly if the following is done:
test-tcp seems happy:
The text was updated successfully, but these errors were encountered: