Skip to main content

 I urgently need individuals who are willing to cooperate on my website and projects.

Arduino Fast Oscilloscope Library

Published: 31 December 2015
Last updated: 20 February 2024

When should you use the Fast Oscilloscope library?

  • When conventional debugging via the serial monitor isn't feasible.
  • When the data is too fast for the serial monitor.
  • When oscilloscope functionality is required.

Arduino Fast Oscilloscope

Eliminating the disruption of the program by the serial monitor

It is not always possible to debug Arduino programs by the serial monitor, as this disrupts the progress of the program. That's why I developed the Fast Oscilloscope, it has helped me with a lot with complex projects.

How does it work?

During the measurement, the data is quickly stored in a buffer. The Fast Oscilloscope is in fact a circular buffer with oscilloscope functions. It has been kept as simple as possible to save memory space and optimize the speed. After the measurement is done, the data in the buffer can be sent by the serial monitor to the computer. Then this data can be shown in a graph by Excel. 

Example

Because the Fast Oscilloscope can measure all internal variables, complicated tests can be done:

Arduino High Speed Visual Debugging Tool
With the help of the trigger() we can catch very hard to find bugs:

Arduino High Speed Visual Debugging Tool

avdweb_Fast_Oscilloscope library on GitHub

Download the library from GitHub.

Library improvements

The library can still be improved, but I don't have time for this myself.
Who wants to take this over?
Among other things, it would be nice if the buffer size could be set via the constructor.

Use as a common oscilloscope

Of course, it is possible to use the ADC for measuring external signals, just like a normal oscilloscope.

Features of the Fast Oscilloscope

  • Measuring all kinds of sketch-variables, with or without analog input values.
  • Suitable for ATmega328 and SAMD21 Arduino boards: Arduino Uno, Arduino Zero, SAM 15x15, etc.
  • The trigger signal can be generated by the sketch.
  • It can be used for 1, 2, 3 or 4 channels.
  • It has pre-trigger and post-trigger.
  • The sample rate is measured and printed.

Similar commercial products

Difference with normal oscilloscope

An Arduino has an inside world and outside world. With an oscilloscope we can measure the outside world. However, everything what happens inside remain hidden. To debug complex sketches, it would be nice if we could measure electronic signals outside the board together with internal sketch-variables. So, I have built this Fast Oscilloscope, which is an extreme powerful tool for debugging.

Operation of the Fast Oscilloscope

Start

Specify the number of channels and start: scope.start(2); (for 2 channels)
The scope waits for the trigger: scope.trigger();
After the trigger, the scope records the samples.
probeAB(...); (inside a loop, for 2 channels)

Trigger

We have to give a trigger() or stop() signal, else nothing happens.
When more triggers are given, only the first trigger is taken.

Print to the serial monitor

Use showIfReady() to print the recorded values. 

RecordLenght

The record length, this is the same as the circular buffer size, depends on the number of channels and the kind of processor that is used. For the SAMD21G18 on the Arduino Zero, the size is set to 2000 bytes. Since the samples are short integers (2 bytes), this results in maximum 1000 samples for the SAMD21G18. For 2 channels, these are respectively 500 samples.

A large buffer size can have the disadvantage that it may take too much time until all samples have been taken. Therefore, you can specify a smaller buffer size, for example:
scope.start(2, 0, 50); (2 channels, record length 25 samples (50/2) instead of 1000)

Stopping immediately

Instead of waiting until the scope is ready, we can also abort sampling and show the values immediately at the serial monitor. This is done with the stop signal:
stop();
The stop works also when no trigger was given before.

Pre trigger

Optionally, the number of pre samples can be specified, for example:
scope.start(1, 20, 100); (1 channel, pre samples = 20, record length = 100)

Post trigger

The number of post samples may be specified with a negative value, for example:
scope.start(1, -10, 100); (1 channel, post samples = 10, record length = 100)

Fast 10-bit ADC

As part of the Fast Oscilloscope library, I have developed a fast 10-bit ADC, the maximum sample rate with one analog input is 50kS/s..

Example with two channels and pre-trigger

#include "avdweb_SWscope.h" // https://avdweb.nl/arduino/measurement/oscilloscope

// Attention: set in avdweb_SWscope.h: const int maxScopeBytes = 100; // or more if possible

SWscope scope; 

void setup(void) 
{ Serial.begin(115200);
  scope.start(2, 10); // 2 integer channels , preSamples = 10, buffer is 100/4=25 integer values
  // scope.testBuffer(); // print 100/2 = 50 integer values with only channel A
}

void loop(void) 
{ static int internalValue;
  internalValue += 2;
  scope.probeAB(internalValue, analogRead(A0)); // channel A = internalValue, channel B = ADC
  if(internalValue > 10) scope.trigger();
  scope.showIfReady(); 
}

Serial port output:

usPerDiv: 113
ptr, values 
21 0 0
22 0 0
23 0 0
24 0 0
0 2 106
1 4 80
2 6 62
3 8 47
4 10 36
5 12 28
6 14 21 trigger
7 16 16
8 18 12
9 20 9
10 22 7
11 24 5
12 26 3
13 28 2
14 30 1
15 32 0
16 34 0
17 36 0
18 38 0
19 40 0
20 42 0

Example with interrupt service routine 

#include "avdweb_SWscope.h"
#include <FrequencyTimer2.h> // mainISR https://github.com/PaulStoffregen/FrequencyTimer2

// Attention: set in avdweb_SWscope.h: const int maxScopeBytes = 100; // or more if possible

SWscope scope;

void setup(void)
{ Serial.begin(115200);
  FrequencyTimer2::setPeriod(250); // period = 250us
  FrequencyTimer2::setOnOverflow(mainISR); // start ISR here
  scope.start(2, 10); // 2 integer channels , preSamples = 10, buffer is 100/4=25 integer values
  scope.trigger();
}

void mainISR(void)
{ static int internalValue;
  internalValue += 2;
  scope.probeAB(internalValue, analogRead(A0)); // channel A = internalValue, channel B = ADC
  if(internalValue > 10) scope.trigger();
}

void loop(void)
{ scope.showIfReady(); 
}

Serial port output:

usPerDiv: 120
ptr, values 
15 0 0
16 0 0
17 0 0
18 0 0
19 0 0
20 0 0
21 0 0
22 0 0
23 0 0
24 0 0
0 2 75 trigger
1 4 53
2 6 37
3 8 25
4 10 16
5 12 10
6 14 5
7 16 2
8 18 0
9 20 0
10 22 0
11 24 0
12 26 0
13 28 0
14 30 0

Create charts with the Serial Plotter Tool

The most convenient way to visualize the data is using the the Serial Plotter Tool.

Create charts with Excel 

Copy the data from the serial port window and paste it to Excel with "paste special".

Circular buffer size

The maximum circular buffer size is about

  • ATmega328 used in the Arduino Uno: 700 bytes
  • SAMD21 used in the Arduino Zero: 7000 bytes

If the Fast Oscilloscope library is part of a large sketch, the circular buffer would have to reduced, do this by changing maxBytes in the library header file.

If the buffer is made too large then we get an uncontrolled situation. While there are no compiler errors, the content at the end of the circular buffer may be overwritten by nonsense. The reason is that the Arduino works without operating system that keeps control.

Other Arduino fast oscilloscopes

Here are similar Arduino programs, but they are not libraries: