Search found 1 match

by fearick
Wed Nov 12, 2008 2:06 pm
Forum: Linux
Topic: Programming ps3000 with Python
Replies: 3
Views: 8780

It's quite easy to program in Python using ctypes to interface to the dll: import ctypes as ct ps3000=ct.windll.ps3000 #function interface to dll ps_open_unit=ps3000.ps3000_open_unit ps_open_unit.restype=ct.c_short ps_set_channel=ps3000.ps3000_set_channel ps_set_channel.restype=ct.c_short ps_set_cha...