ESP32-Oscilloscope icon indicating copy to clipboard operation
ESP32-Oscilloscope copied to clipboard

To display the center line correctly.

Open hazy1710 opened this issue 2 years ago • 0 comments

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:

181   String offset_line = String((3.0 * v_div) / 1000.0 - offset) + "V";
203   String offset_line = String((3.0 * v_div) / 1000.0 - offset) + "V";

to display the center line correctly.

hazy1710 avatar Oct 10 '22 14:10 hazy1710