Skip to main content
The Quantum Dispatch
Back to Home
Cover illustration for ESP32 Web Browser Loads Real Web Pages in Text Mode

ESP32 Web Browser Loads Real Web Pages in Text Mode

Alun Morris built babe32, an open-source text-mode web browser that fetches and renders real web pages on an inexpensive ESP32 display board.

Alex Circuit
Alex CircuitJul 29, 20264 min read

Yes, the Browser Actually Fetches the Page

Alun Morris has built babe32, an open-source text-mode web browser that runs on an ESP32 paired with one of the inexpensive "Cheap Black Display" boards circulating on the usual marketplaces. It retrieves web pages over the network, tokenizes the HTML, and renders the result on the attached screen — Hackaday's own site among the demonstrated pages. As far as Hackaday could tell, it is the first ESP32 browser of its kind they have seen.

  • Runs on a stock ESP32 paired with a low-cost Cheap Black Display board available from the usual overseas retailers
  • Separate FreeRTOS processes for HTML retrieval, tokenizing, and UI rendering, which keeps the parser from stalling the display
  • Includes an optional server-side proxy for awkward sites and for generating image thumbnails
  • Open source and published on GitHub, with more capable recent ESP32 variants offering obvious headroom

Why This Is Harder Than It Sounds

The ESP32 is a capable microcontroller, but "capable" here means a couple of hundred kilobytes of usable RAM against a modern web page that can arrive as several hundred kilobytes of markup before a single asset is fetched. A conventional browser parses the whole document into a tree, computes layout, and paints. None of those steps fit comfortably in this memory budget, and the naive approach runs out of heap somewhere in the middle of the first page.

Morris's answer is architectural. Retrieval, tokenizing, and UI run as separate FreeRTOS processes, which means the HTML can be consumed and turned into display output in a streaming fashion rather than being buffered whole. That is essentially how browsers worked before memory got cheap, and it remains the right shape for a device where memory has not.

What Does the Proxy Do?

Some of the modern web is simply not reachable from a microcontroller — compression schemes, redirect chains, and TLS negotiations that a small stack handles badly. babe32 includes an optional server-side proxy that smooths those cases and additionally generates image thumbnails, since decoding a full-resolution JPEG on the device would be its own project.

This is a sensible engineering compromise rather than a cheat. Offloading the parts that genuinely need a real computer, while keeping the fetch-parse-render loop on the microcontroller, is what makes the whole thing tractable. It also leaves an obvious upgrade path: the proxy can get smarter without touching the firmware.

Where This Could Go Next

The recent ESP32 variants are considerably more capable than the part this runs on. The ESP32-P4 and ESP32-S3 bring more RAM, faster clocks, and in some cases hardware acceleration that would make image handling and richer layout plausible on-device. Anyone looking to extend the project has a lot of room.

Projects like this are why the ESP32 ecosystem stays interesting, alongside efforts like Moonshine's offline voice AI on a Pico 2 and the Open RC Spotter telemetry logger. Every so often someone demonstrates that a class of software everyone assumed needed a real computer does not, quite. The code is on GitHub for anyone who wants to build one — our mini computer coverage will be watching where it goes.

Sources: Hackaday — July 29, 2026.

More Mini Computers Stories

Mini Computers

NXP RW610FML Module Packs Wi-Fi 6 and BLE 5.4 in 25mm

NXP's RW610FML packs Wi-Fi 6, Bluetooth LE 5.4 and a 260 MHz Cortex-M33 into a 25.5 x 18 mm module rated for -40C to 85C industrial operation.

Alex Circuit
Alex CircuitJul 29, 20265 min read
Mini Computers

SensWear Open-Source Wearable Kit Ships With 4 Sensors

SensWear is an open-source nRF54L15 wearable platform with four swappable sensor boards, MIT-licensed firmware, and a EUR 849.99 full bundle.

Alex Circuit
Alex CircuitJul 29, 20265 min read
Mini Computers

DFI X6X-ORN Packs 157 TOPS Into an IP67 Edge AI Box

DFI's fanless X6X-ORN pairs an NVIDIA Jetson Orin NX with IP67 sealing, up to 157 TOPS, GMSL2 cameras, four M12 ports and a -20°C to 60°C range.

Alex Circuit
Alex CircuitJul 28, 20265 min read