Search found 4 matches

by dolhop
Thu Jan 17, 2013 7:46 pm
Forum: General Software Discussions
Topic: pico python interface (partial, ps2000)
Replies: 10
Views: 29557

Re: pico python interface (partial, ps2000)

likely because the scope didn't trigger, so there was no data available. It's non-blocking, (thus the time.sleep() call), so if it waits for a trigger that doesn't happen, when you ask for data, none will be available.
by dolhop
Thu Jan 17, 2013 7:11 pm
Forum: General Software Discussions
Topic: pico python interface (partial, ps2000)
Replies: 10
Views: 29557

Re: pico python interface (partial, ps2000)

When attempting to call a method on this "scope" object, it first checks to see if the name of the method you are calling starts with ps2000 - if so, it attempts to call such a method from the DLL/library. If not, it defers to any method that the scope object itself has. In this case, it looks like ...
by dolhop
Tue Jan 15, 2013 2:09 pm
Forum: General Software Discussions
Topic: pico python interface (partial, ps2000)
Replies: 10
Views: 29557

Re: pico python interface (partial, ps2000)

That script is quite old, and I believe the pico API has changed since then. I have attached a newer version of my python interface, try that first.
by dolhop
Tue May 12, 2009 3:25 pm
Forum: General Software Discussions
Topic: pico python interface (partial, ps2000)
Replies: 10
Views: 29557

pico python interface (partial, ps2000)

all, I have implemented a partial interface to the PS2000 via python. it shouldn't be difficult for anyone to implement the missing functionality or add support for other pico models. currently it only supports windows, but linux support should be as simple as changing the library name/location. enj...