Search found 265 matches

by NeilH
Wed Sep 11, 2019 10:02 am
Forum: USB PC Data Loggers
Topic: Timestamps for python pl1000getValues
Replies: 1
Views: 9439

Re: Timestamps for python pl1000getValues

Hi

What timestamp are you trying to get? Are you wanting the system time at the point each measurement was made or something else?

Neil
by NeilH
Wed Sep 11, 2019 9:57 am
Forum: PicoScope 6 for Windows
Topic: Select all in PicoLog 6
Replies: 1
Views: 1956

Re: Select all in PicoLog 6

Hi

I believe that you can use ctrl+A to select all in the table view ready for copying so long as the data collection is paused. You can also export the data to a csv file for opening in software like excel.

Neil
by NeilH
Wed Sep 11, 2019 8:06 am
Forum: General Software Discussions
Topic: How re-use .pssetting files in python project?
Replies: 1
Views: 2675

Re: How re-use .pssetting files in python project?

Hi The pssetting and psdata file are proprietary file types and are not available to be loaded into any program other than PicoScope 6, to use the scope in python you would need to use the API functions from the PicoSDK to set up the scope that are documented within the programmer's guide here https...
by NeilH
Tue Sep 10, 2019 7:57 am
Forum: .Net Languages (C#, VB.Net, .)
Topic: Why min and max buffers?
Replies: 2
Views: 11514

Re: Why min and max buffers?

Hi When using SetDataBuffers you set up a maxBuffer and a minBuffer as when using aggregation downsampling you will get two different values per downsampled sample into these two buffers, if you are not using that downsampling mode then the two buffers will have the same data in them so you would on...
by NeilH
Tue Sep 10, 2019 7:53 am
Forum: C and C++
Topic: How Measure frequency,duty,raise time of edge,fall time of edge
Replies: 1
Views: 9877

Re: How Measure frequency,duty,raise time of edge,fall time of edge

Hi

The measurements in PicoScope 6 are a software feature of PicoScope 6 and not included within the API in the PicoSDK. If you wish to make these measurements in C++ you would need to program these yourself.

Neil
by NeilH
Thu Sep 05, 2019 8:17 am
Forum: RF Products
Topic: PicoVNA Matlab Interface
Replies: 5
Views: 13224

Re: PicoVNA Matlab Interface

Hi

Using the regsvr32 will register the dll for use with 32 bit applications only as the dll itself is 32 bit so it would work with a 32 bit version of MATLAB such as 2015b 32 bit.

Neil
by NeilH
Wed Sep 04, 2019 1:39 pm
Forum: MATLAB
Topic: Changing the Resolution of a 4444
Replies: 2
Views: 9272

Re: Changing the Resolution of a 4444

Hi

The ps4000aSetDeviceResolution isn't in the .mdd file currently so to call it you would need to use this format instead;

calllib('ps4000a','ps4000aSetDeviceResolution',ps4000aDeviceObj.unitHandle, ps4000aEnuminfo.enPS4000ADeviceResolution.PS4000A_DR_14BIT)

Neil
by NeilH
Tue Sep 03, 2019 12:59 pm
Forum: USB PC Oscilloscopes
Topic: Picoscope 6404D Signal Generator Trigger Latency
Replies: 4
Views: 3459

Re: Picoscope 6404D Signal Generator Trigger Latency

Hi You would need to change the scope trigger to meet those requirements to have the signal generator trigger like that, as it is sharing it with the data capture as well. Are you able to give a sketch of your signal over several buffer lengths with where you would like to trigger your signal genera...
by NeilH
Tue Sep 03, 2019 10:01 am
Forum: General Software Discussions
Topic: Minimize relay activity during development
Replies: 1
Views: 2309

Re: Minimize relay activity during development

Hi

What are you currently getting when you're debugging?
Can you describe what exactly you're doing with the scope while debugging?

Neil
by NeilH
Tue Sep 03, 2019 9:41 am
Forum: USB PC Oscilloscopes
Topic: Picoscope 6404D Signal Generator Trigger Latency
Replies: 4
Views: 3459

Re: Picoscope 6404D Signal Generator Trigger Latency

Hi

The alarm wouldn't trigger the signal generator till after the capture has completed, if you want to trigger the signal generator during the capture you would need to use the Triggers option under the Signal Generator to use the scope trigger

Neil
by NeilH
Tue Sep 03, 2019 9:38 am
Forum: MATLAB
Topic: Issue While Making an App in MATLAB 2019a
Replies: 2
Views: 6193

Re: Issue While Making an App in MATLAB 2019a

Hi

Are you able to post your app code so that I can have a look what is going on and try to reproduce the issue?

Neil
by NeilH
Thu Aug 29, 2019 8:11 am
Forum: MATLAB
Topic: Problem connecting to picoscope 2204a via app designer
Replies: 2
Views: 6169

Re: Problem connecting to picoscope 2204a via app designer

Hi My guess would be that you're running the ps2000Config file which creates things within the workspace that are needed when using the addon to control the scope, so when using app designer you would need to modify this so that these are loaded into the app's workspace instead of the main MATLAB on...
by NeilH
Thu Aug 22, 2019 7:31 am
Forum: MATLAB
Topic: Simple Trigger + Max Continuous Streaming
Replies: 1
Views: 5155

Re: Simple Trigger + Max Continuous Streaming

Hi If you are wanting to use a trigger to initiate capture you will need to be using the block capture mode, as in streaming the data capture will start immediately upon calling RunStreaming. The trigger in streaming ca be used to mark a point within the streamed data and/or to work with the autosto...
by NeilH
Thu Aug 22, 2019 7:20 am
Forum: PicoLog
Topic: Control PicoLog by using Python
Replies: 9
Views: 6951

Re: Control PicoLog by using Python

Hi

We don't yet have support for the PT-104 in our repository, but if you have working code for controlling a PT-104 the way to get data is to call the UsbPt104GetValue function per channel you are wanting to get the data from to retrieve the most recent value from each channel in turn.

Neil
by NeilH
Thu Aug 15, 2019 12:32 pm
Forum: PicoLog
Topic: Control PicoLog by using Python
Replies: 9
Views: 6951

Re: Control PicoLog by using Python

What mode are you wanting to use?

Neil