Android Oscilloscope Serial using usb-serial-for-android
 
 
 
 
Go to file
dgatf 8d1ad4903e Delete files 2023-10-17 06:48:13 -04:00
images Update image 2021-11-24 12:01:49 -05:00
src Delete files 2023-10-17 06:48:13 -04:00
LICENSE Improve gui 2021-11-03 17:52:55 -05:00
README.md Update to v0.3 2022-03-06 23:15:49 -05:00

README.md

Oscilloscope Serial

An oscilloscope application that reads the values at serial port generated by an Arduino board and based on the value of the analog pin A0 (A5 for Leonardo)


Main window


Settings


Main window Android

The Arduino sketch is optimized for AVR ATmega MCUs with 26μs sampling resolution. For other boards the resolution is 200μs. Voltage resolution is 20mV.

Flash oscilloscope. In the Oscilloscope app configure the serial port. By default 1000000bps, 8bits and no parity. Interval is 26μs for AVR ATmega and 200μs for other MCUs. Any source (1byte) at serial is valid.

You can connect any signal up to 5 volts to the analog pin A0. For signals over 5V a voltage divider is needed.

For ATmega boards it is defined a PWM signal at pin OC1B. To test the Oscilloscope app connect pin OC1B to pin A0/A5 Adjust PWM signal with PWM_FREQ and PWM_DUTY. Default is 1000Hz, 50% duty.

Pin OC1B location:

  • Uno: pin 10 (PB2)
  • Leonardo: pin 10 (PB6)
  • ATmega2560: pin 12 (PB6)

Find binaries here

Or build from sources:

  • install qt (>=5.15)
  • cd to src/qt folder
  • qmake
  • make

Supported OS:

  • Linux
  • Windows
  • Android
  • MacOS (untested)

Change log:

v0.3

  • Minor fixes

v0.2

  • Upgrade to qml gui
  • Add csv export
  • Improve android support

v0.1

  • Initial release