-
Hey there, i am using a Hantek 6022BE for my Bachelor thesis. I need to monitor a 1kHz PWM-Signal over 10 hours, and i need the duty cycle and the maximum voltage of each period. Is it somehow possible to configrate the data export to save this as csv? I saw the duty-cycle in the top left corner, so i hope that there might be a way to export these Values, so I wont have to store all the 'useless' data to analyse it afterwards with python. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
dettkima, The best way to do this is to use the Hantek6022API, which utilizes Python to make captures from the scope. It's easy to use. You'd write your own script to do what you want to do. Unfortunately, you'll need to analyze the waveform of each capture to calculate the duty cycle and maximum voltage. It would be a good learning opportunity for your thesis. Here's a link to the project on GitHub: https://github.com/Ho-Ro/Hantek6022API Good luck! Jonathan |
Beta Was this translation helpful? Give feedback.
-
Not possible with OH6022 b/c the duty cycle display is only valid for the triggered edge and the program skips data during search for the next trigger edge (triggering is done completely in SW due to the limited HW of the scope). But you can use the (almost) infinite capturing tool from https://github.com/Ho-Ro/Hantek6022API EDIT: I typed too slow, thx Jonathan :) |
Beta Was this translation helpful? Give feedback.
dettkima,
The best way to do this is to use the Hantek6022API, which utilizes Python to make captures from the scope. It's easy to use. You'd write your own script to do what you want to do. Unfortunately, you'll need to analyze the waveform of each capture to calculate the duty cycle and maximum voltage. It would be a good learning opportunity for your thesis. Here's a link to the project on GitHub:
https://github.com/Ho-Ro/Hantek6022API
Good luck!
Jonathan