Hacking with Claude on a $27 Smart Watch: Edge AI Coding Case Study

Hacking with Claude on a $27 Smart Watch: Edge AI Coding Case Study

Can you really build a custom smart watch face with an AI coding agent on a $27 watch? Yes — a staff software engineer at Strava did exactly that, turning a PineTime that had sat abandoned in a drawer for two years into a working Casio-style watch face in just a few hours. This case study breaks down how edge AI coding works on cheap, open-source hardware, and what it means for the future of embedded development. ...

September 3, 2026 · 11 min · baeseokjae
Running LLM Commands on ESP32: Embedded AI Agent Hardware

Running LLM Commands on ESP32: Embedded AI Agent Hardware

Yes, you can run LLM commands on an ESP32. A 28.9M-parameter language model runs fully on-device on an ESP32-S3 at about 9.88 tokens per second, with 25M parameters stored in flash using Google’s Per-Layer Embeddings. However, models this small cannot follow instructions, answer questions, or write code — so true command execution requires either a more capable chip like the ESP32-P4 or a cloud-assisted setup. Why Run an LLM on a $6 Microcontroller The ESP32 family is the most popular microcontroller line in the maker and IoT world, and it costs as little as $6 to $10 per board. Running a language model on it means you get local, private, offline inference on hardware that costs less than a cup of coffee. There is no cloud bill, no network dependency, and no data leaving your device. ...

August 28, 2026 · 11 min · baeseokjae
SLM on ESP32-S3: Training a Small Language Model on an $8 Microcontroller 2026

SLM on ESP32-S3: Training a Small Language Model on an $8 Microcontroller 2026

Introduction — Why Run a Language Model on an $8 Microcontroller? The idea of running a language model on a microcontroller that costs less than a cup of coffee sounds improbable, but the ESP32-S3 makes it a reality. With dual-core Xtensa LX7 processors running at up to 240 MHz, 512 KB of internal SRAM, and support for up to 8 MB of external octal SPI PSRAM, this $6–8 chip can execute small language models (SLMs) entirely offline — no cloud, no WiFi dependency, no API keys required. ...

August 6, 2026 · 14 min · baeseokjae
Gemma 4 Review 2026: Google's Best Open-Source Model Yet?

Gemma 4 Review 2026: Google's Best Open-Source Model Yet?

Gemma 4 is Google DeepMind’s 2026 open-source model family — four model sizes from 2B (phone-optimized) to 31B dense, all under Apache 2.0, scoring 89.2% on AIME 2026 and ranking #3 on the Arena AI leaderboard. If you’re evaluating open-weight models for production use today, Gemma 4 is the most commercially viable and technically competitive option available. What Is Gemma 4? Google’s Open-Source Flagship Explained Gemma 4 is Google DeepMind’s fourth-generation open-weight language model family, released on April 2, 2026, designed to cover the full deployment spectrum — from on-device inference on smartphones to large-scale server workloads. Unlike prior Gemma generations, Gemma 4 ships with genuine frontier-model performance: the 31B dense variant scores 84.3% on GPQA Diamond, outperforming Meta’s Llama 4 Scout (109B) at 74.3%, and reaching 89.2% on the AIME 2026 math benchmark — a figure that was 20.8% just one generation earlier. The model family is multimodal (vision + audio input on edge models), multilingual (140+ languages), and supports context windows up to 256K tokens. Since Google’s first Gemma release, developers have downloaded Gemma models over 400 million times, and the Gemmaverse now includes over 100,000 community-created fine-tunes and variants. That ecosystem depth means production-grade LoRA adapters, GGUF quants, and tool integrations are available day one — not months later. Gemma 4 is the model to benchmark any other open-weight model against in 2026. ...

May 7, 2026 · 13 min · baeseokjae