Setting IEPE mode in Streaming Handler in my C++ program

Post your C and C++ discussions here
Post Reply
vincenzo.vitale
Newbie
Posts: 0
Joined: Tue Sep 28, 2021 3:13 pm

Setting IEPE mode in Streaming Handler in my C++ program

Post by vincenzo.vitale »

Good day everyone,
I'm writing for my thesis a program that permits to interface with a Picoscope 4224 IEPE.
I need to operate in IEPE mode with the requested accelerometer, but I see that in DC/AC Coupling I can only set:
- TRUE if I need DC Coupling
- FALSE if I need AC Coupling
How I can set up the IEPE mode? :?

Have a nice day,
Vincenzo Maria Vitale

Martyn
Site Admin
Site Admin
Posts: 4501
Joined: Fri Jun 10, 2011 8:15 am
Location: St. Neots

Re: Setting IEPE mode in Streaming Handler in my C++ program

Post by Martyn »

When setting up the channel there are specific ranges for the accelerometer, you select these to switch on the power source for the IEPE accelerometer, and use AC coupling

Code: Select all

  PS4000_ACCELEROMETER_10MV,
  PS4000_ACCELEROMETER_20MV,
  PS4000_ACCELEROMETER_50MV,
  PS4000_ACCELEROMETER_100MV,
  PS4000_ACCELEROMETER_200MV,
  PS4000_ACCELEROMETER_500MV,
  PS4000_ACCELEROMETER_1V,
  PS4000_ACCELEROMETER_2V,
  PS4000_ACCELEROMETER_5V,
  PS4000_ACCELEROMETER_10V,
  PS4000_ACCELEROMETER_20V,
  PS4000_ACCELEROMETER_50V,
  PS4000_ACCELEROMETER_100V,
Martyn
Technical Support Manager

vincenzo.vitale
Newbie
Posts: 0
Joined: Tue Sep 28, 2021 3:13 pm

Re: Setting IEPE mode in Streaming Handler in my C++ program

Post by vincenzo.vitale »

Thank you, I've updated that! :D

Post Reply