Pierre Cladé

Results 30 comments of Pierre Cladé

Hi, I didn't know this feature. It should be possible to change the way error are caught for this function. I post a solution on a new branch (DAQmxGetSysFunction). Can...

The IDN command is working, so this is not a connection problem. Maybe an error occurs is there is no trace on the scope (i.e. the CH4 is off or...

PyTektronixScope does require pyvisa (you can use any object with the write and ask method). I think that the commit 76604be will solve the problem of the new pyvisa. This...

Recent version of visa do not have the ask method. You should replace "ask" by "query" (line 59) and the ask_raw by a "write" and a "read_raw". Note also that...

I have not tested the package on linux. Apparently you can remove the "import vpp43" from the PyTektronixScope file. The vpp3 is used by the VisaList.py file, which is a...

You can use this usbtmc class. class usbtmc(object): """Simple implementation of a USBTMC device driver, in the style of visa.h""" ``` def __init__(self, device="/dev/usbtmc0"): self.device = device self.FILE = os.open(device,...

Could you try : d71e92d I don't have an 8 channel scope to test.

Thanks for your comments. Ref 1 : there is now two functions : get_out_waveform_vertical_scale_factor that returns 'WFMO:YMUlt?' and get_vertical_scale(self, channel) that returns 'CHx:SCA' Ref 2: OK See commit fa82158

The current version of PyTektronixScope on github should work. I update the pypi repo. It should work with pip. Le 05/04/2017 à 19:35, Stephanie Higgins a écrit : > >...

The package works on Python 3. 2to3 is now run by the setup script automatically. So there is no need to explicitly call 2to3, an a simple "python setup.py install"...