Questions tagged [oscilloscope]

Laboratory instrument to observe changes of electric signals on the screen.

Oscilloscope is a laboratory instrument to observe changes of electric signals on the screen. The operator of the oscilloscope uses a probe with pin at its end connected by shielded cable to the input of the device. The level of the signal (voltage) is divided in the probe (to avoid oscilloscope destruction) and then signal goes into the electronics inside.

In the classic oscilloscope signal cause deviation of the electron beam in the vacuum tube, what allows to see the shape of the signal on the phosphor layer of the vacuum tube.

In modern digital oscilloscope signal enters into analog to digital converter (ADC) then is processed by the processor or dedicated integrated gate array, then displayed on LCD screen.

While digital oscilloscope offers lot of interesting functions they introduce large delay of signal processing in opposition to analog oscilloscope, while the latter is less rich in features.

Resources

84 questions
2
votes
1 answer

How to create oscilloscope for audio on android

i am creating an app for audio recording with oscilloscope. i did the audio recording with the following code now i add oscilloscopse as shown in the figure.my requirement is oscilloscope's wave should be zigzac according to the user's voice tone. i…
M.A.Murali
  • 9,988
  • 36
  • 105
  • 182
1
vote
2 answers

Making a desired layout in Eclipse

I am working on the layout of the android app but i have found that all buttons are fixed in a column in Eclipse atuomatically. What should i do to make it to the desired position like the app shown in the link??…
1
vote
0 answers

What is a SCPI command for OWON XDS3202A so to grab a display image?

I need to capture the display image of a OWON XDS3202A oscilloscope, a digital copy, and do it via Python, however, I don't know the appropriate SCPI command to grab the screen dump (like SCDP command in Siglent SDS oscilloscopes). I've looked up in…
levgor
  • 21
  • 3
1
vote
1 answer

How can I properly implement zero cross triggering for digital oscilloscope in C?

So I'm doing a simple oscilloscope in C. It reads audio data from the output buffer (and drops buffer write counter when called so the buffer is refreshed). I tried making simple zero-cross triggering since most of the time users will see simple…
LTVA
  • 11
  • 5
1
vote
0 answers

Acquiring waveform of LeCroy oscilloscope with PyVISA

I am trying to acquire a waveform from a LeCroy Teledyne HDO4024A oscilloscope. I'm using the LeCroyDSO library and I've been able to communicate with the oscilloscope. For example, I could change the vertical scale with: from lecroydso import…
James Craft
  • 121
  • 5
1
vote
1 answer

binary format of a PeakTech 1330 oscilloscope

Does anybody know the binary format of a PeakTech 1330 oscilloscope? What I do know: The first 32 byte seem to be a header describing the instrument. The last 94 byte seem to describe the setting (gain, time scale, channel used ...) - but I have no…
1
vote
1 answer

Java: Plotting Left and Right channels of a .flac audio file on an X-Y grid. (Oscilloscope)

I am trying to create an X-Y Oscilloscope in Java and I have gotten stuck. I have read through all the documentation for jFlac, the library i am using to decode my .flac audio file and the free lossless audio codec documentation here. I cannot seem…
kieve
  • 124
  • 1
  • 3
  • 7
1
vote
1 answer

Python code to read/write label of oscilloscope

I have written a small Python code to read back the label of a particular channel on my Tektroniks oscilloscope. The following code works well and gives the expected result. import visa rm=visa.ResourceManager() Tek_Scope=…
Sinha
  • 431
  • 1
  • 5
  • 12
1
vote
0 answers

How can I import .trc files in python?

I recently imported .trc files and can't open them on my python terminal. Is there any way to do it? If not, is there any way to convert .trc files into .csv?
ffalk
  • 59
  • 4
1
vote
2 answers

FTDI Bit-Bang Jitter (FT232R vs FT232H)

When I bit-bang the RX and TX pins on the FT232H, output is beautiful. When I repeat on the FT232R it is awful. What is causing signals to look so bad on the FT232R? Note that I'm using a FT232R breakout board (from sparkfun) and a FT232H breakout…
SWHarden
  • 136
  • 8
1
vote
1 answer

Moving average digital filter implementation

I need to implement moving average digital filter for post processing of some recorded oscilloscope waveforms in Scilab. I have prepared a script with below given code (the recursive implementation with averaging window containing 256 samples) //…
Steve
  • 805
  • 7
  • 27
1
vote
0 answers

Matlab crashing when calling callib

I'm trying to interface with a USB oscilloscope, the Handyscope HS3, through Matlab. I got a basic interface working a few weeks ago but for some reason a library call now seems to cause Matlab to crash. I've been trying to debug this problem with…
HankyP
  • 13
  • 2
1
vote
1 answer

Draw an image as a waveform?

I want to export a series of images (a movie) and draw as a waveform, like how: https://www.youtube.com/watch?v=M9xMuPWAZW8&feature=youtu.be&t=328 did http://oscilloscopemusic.com/ offers a program for loading 3D .obj files but I am currently…
quantumpotato
  • 9,637
  • 14
  • 70
  • 146
1
vote
1 answer

Oscilloscope api for compact framework

Few days ago I where searching for human interface for mobile devices. but all bluetooth devices are pretty messy and hard to implement. Question are: "Is there open source, or free library for making Oscilloscope on WinMobile platform. As my…
adopilot
  • 4,340
  • 12
  • 65
  • 92
1
vote
1 answer

CreateTextFile Method is basic fails to create file at specified path

I am using BASIC for the first time to automate a LeCroy Oscilloscope. Following examples provided by them I am attempting to create a program which uses the oscilloscope features and prints measured values to file. The oscilloscope specific…
radiskull
  • 23
  • 2