top of page


Reliquary 002
Working code for images: ESP32 (Arduino): /* * ESP32 Fast Image Display * Receives multiple pixels per request */ #include <WiFi.h> #include <WebServer.h> #include <TFT_eSPI.h> #define DISPLAY_ID 1 const char* ssid = "sweetpiWIFI"; const char* password = "ihopethisWORKS"; TFT_eSPI tft = TFT_eSPI(); WebServer server(80); void setup() { Serial.begin(115200); // Init display tft.init(); tft.setRotation(0); tft.fillScreen(TFT_BLACK); // Show startup ...
Julianna Hellerman
Nov 275 min read
Â
Â
Â
bottom of page
