ESP32-Oscilloscope
ESP32-Oscilloscope copied to clipboard
Create your own affordable ESP32-based oscilloscope with 1Msps sampling rate using this DIY project. Features include a 1.69” TFT display, tactile switches, and essential components. Find the circuit...
This is a very nice project. I am going to build and use. I have a breadboard up and running the code with one problem. I am using the ESP32...
Change: ``` 181 String offset_line = String((2.0 * v_div) / 1000.0 - offset) + "V"; 203 String offset_line = String((2.0 * v_div) / 1000.0 - offset) + "V"; ``` to:...
If ESP32 version is 2.xx, the compiler print error: 'i2s_read_bytes' was not declared in this scope. I think, its need new function **i2s_read** , but simple changing function neme `i2s_read(I2S_NUM_0,...
# LIST OF ISSUES SOLVED 1- fixed issue #3 by replacing `i2s_read_bytes` with `i2s_read` 2- fixed core compiling issue by adding `#include "hal/gpio_ll.h"` to `TFT_eSPI_ESP32.h` in `TFT_eSPI\Processors` 3- fixed `to_scale`...