Search found 403 matches

by AndrewA
Tue Mar 26, 2024 10:58 am
Forum: USB PC Oscilloscopes
Topic: Documentation error in ps2000aApi.h
Replies: 1
Views: 945

Re: Documentation error in ps2000aApi.h

Hi,
The enums are correct the comments are incorrect! So this won't affect any code.
I have reported the bug to our development department.
by AndrewA
Mon Mar 25, 2024 3:32 pm
Forum: PicoScope 7 for Windows, Linux and Mac
Topic: Program shutdown when using the "Maths channels" function
Replies: 1
Views: 236

Re: Program shutdown when using the "Maths channels" function

If this is just happening one PC then try deleting the Appdata folder for PIcoScope 7, this sometime can cause issues- Close PicoScope 7 Paste- C:\Users\%USERNAME%\AppData\Local\Pico Technology Into the address bar of the File Explorer %USERNAME% should resolve to your Windows user account. Delete f...
by AndrewA
Mon Mar 25, 2024 11:53 am
Forum: PicoLog
Topic: grouping graph displays
Replies: 1
Views: 2327

Re: grouping graph displays

Hi, Yes you can only have max. of 4 graphs at a time. Unfortunately there no shortcut to organise the channels into views. What Pico device(s) are you using with PicoLog 6? With the SDK you are not able to control the PicoLog 6 software, only the device itself. I could request a new feature be added...
by AndrewA
Mon Mar 25, 2024 11:13 am
Forum: .Net Languages (C#, VB.Net, .)
Topic: PS 2205A MSO Triggering Individual Digital Channels Using C#
Replies: 1
Views: 327

Re: PS 2205A MSO Triggering Individual Digital Channels Using C#

Hi Rob, You should call the trigger functions after you have setup your channels (SetChannel(), SetDigitalPort()) If you are just setting up digital channels for trigging you only need to call- ps2000aSetTriggerChannelConditions() and ps2000aSetTriggerDigitalPortProperties() Note in streaming mode y...
by AndrewA
Thu Mar 21, 2024 9:36 am
Forum: PicoScope 7 for Windows, Linux and Mac
Topic: Picoscope 2205A and Manjaro Linux in 2024?
Replies: 4
Views: 194

Re: Picoscope 2205A and Manjaro Linux in 2024?

Hi Nick, Check the USB device Permissions- Open a terminal- Connect the PicoScope to a USB port on the PC. Issue the command lsusb –l Does this command list Pico device(s) connected? check USB device Permissions- cat /etc/udev/rules.d/95-pico.rules Should give- ATTRS{idVendor}=="0ce9", MODE="777" Yo...
by AndrewA
Wed Mar 06, 2024 4:09 pm
Forum: LabVIEW
Topic: Picoscope 6404E data acuisition and visualization
Replies: 1
Views: 145

Re: Picoscope 6404E data acuisition and visualization

I assume you are using a FFT function in LabVIEW to generate a FFT plot?
To get a stable waveform you would need to enable the trigger with a block or rapid block capture.
by AndrewA
Fri Feb 23, 2024 2:09 pm
Forum: LabVIEW
Topic: 4248a Issues
Replies: 1
Views: 1628

Re: 4248a Issues

Hi, Please email us directly at support@picotech.com and we help resolve these issues.
by AndrewA
Fri Jan 19, 2024 11:09 am
Forum: Linux
Topic: Linux device support
Replies: 2
Views: 9721

Old Archived PicoScope for Linux builds both 32-bit and 64-bit versions

We have Archived PicoScope for Linux builds this is both 32-bit and 64-bit versions. And all versions including and previous to 6.12.9 of picoscope. This this has been done due a bug in picoscope and issues separating 32 and 64 bits, verse separate archive for each version and 32 and 64bit versions....
by AndrewA
Wed Nov 22, 2023 9:09 am
Forum: C and C++
Topic: ps6000a SetExternalClock
Replies: 4
Views: 50864

Re: ps6000a SetExternalClock

Following on from this as the switching from internal to external refence clock is automatic. You find out the source used by setting up a callback- Define the callback- typedef void (PREF5 *PicoExternalReferenceInteractions) ( int16_t handle, PICO_STATUS status, PICO_CLOCK_REFERENCE reference ); Fo...
by AndrewA
Mon Nov 20, 2023 2:12 pm
Forum: PicoScope 7 for Windows, Linux and Mac
Topic: timeIndisposedMs
Replies: 1
Views: 1989

Re: timeIndisposedMs

Hi, Instead of using a callback function to know if a block capture has finished you can poll the device using psXXXXIsReady(). With programming languages that don't support our C style callbacks like MATLAB, LABVIEW you have to use the polling option. timeIndisposedMs from the psXXXXRunBlock functi...
by AndrewA
Fri Nov 10, 2023 10:02 am
Forum: USB PC Oscilloscopes
Topic: Use a Picoscope Oscilloscope as a Measurement device with Labview
Replies: 1
Views: 1504

Re: Use a Picoscope Oscilloscope as a Measurement device with Labview

LabVIEW software examples are available from our GitHub repositories. https://github.com/picotech/picosdk-ni-labview-examples/tree/master#readme If you wish to capture data and use the AWG at the same time you will need to add the AWG vi into one of the top level examples for the API being used. And...
by AndrewA
Mon Nov 06, 2023 10:09 am
Forum: Linux
Topic: Linux device support
Replies: 2
Views: 9721

EOL PicoScope 6 repository details for reference

EOL PicoScope 6 repos (deb and rpm systems) Ubuntu - Was supported under version - 18.04 LTS (apt-get) sudo bash -c 'echo "deb https://labs.picotech.com/debian/ picoscope main" > /etc/apt/sources.list.d/picoscope.list' wget -O - https://labs.picotech.com/debian/dists/picoscope/Release.gpg.key | sud...
by AndrewA
Thu Oct 12, 2023 3:19 pm
Forum: LabVIEW
Topic: 4424A Setup for TA167 Current Probe?
Replies: 1
Views: 1574

Re: 4424A Setup for TA167 Current Probe?

Hi, The PicoConnect example is only for PicoScopes that support PicoConnect probes currently this only PicoScope 4444 and Automotive scopes. For the 4424A you need to add code to scale the output for the TA167 as is done in PicoScope 6/7 software. As the scope cannot detect the probe. So use one of ...