An ESP32-based graphing calculator.
A simple graphing calculator powered by the ESP32 SoC from Espressif.
Software built with the Arduino IDE and Espressif’s ESP32 Arduino Core.
The most recent iterations of the ccalculator’s software are based on a Math Parser/Evaluator I’ve written in C++.
Created solely for educational purposes.
Fun fact: roughly 3x faster than the Texas Instruments TI-84 Plus!
Coming soon!
Functions shown below:
Viewing window:
xmin = -10;
xmax = 10;
xscl = 1;
ymin = -10;
ymax = 10;
yscl = 1;
xres = (xmax - xmin)/tft.width();
yres = (ymax - ymin)/tft.height();