pico-python
pico-python copied to clipboard
PicoScope Python Interface
We should probably support this correctly: ``` typedef enum enPS6000BandwidthLimiter { PS6000_BW_FULL, PS6000_BW_20MHZ, PS6000_BW_25MHZ, } PS6000_BANDWIDTH_LIMITER; ``` we can change the code from taking true/false to taking strings like most...
It seems that the PS5000a series has a PS5000A_LOST_DATA defined. They don't explain what the defined value means, but it might be interesting to raise an exception on it.
Taken from the ps6000pg manual section 3.6 ``` Note: This feature is provided for backward-compatibility only. The same effect can be obtained more efficiently with the PicoScope 6000 Series using...
The Picoscope's basic triggering feature is not very good at triggering on ramps. For example, if you give it a triangular ramp it will like to trigger on the quantization...
Hello. For a project, i need to use a picoscope 3000 to aquire data, via a python script. My code looks a little bit like this : ` from picoscope.ps3000...