Tumble Confused Device

.oOo.

Better Serial Plotter in Arduino IDE 2

Arduino IDE 2 came with a very unusable Serial Plotter. The number of data points displayed in the horizontal axis is only 50 by default and this makes displaying fast datapoints disappointing.

A better solution is to increase the number of points.

in file Arduino\ IDE.app/Contents/Resources/app/lib/backend/resources/arduino-serial-plotter-webapp/static/js/main.35ae02cb.chunk.js

search for

U=Object(o.useState)(50)

and replace the value with a bigger buffer (500, 1000, INFINITE :-( ).

.oOo.