Describe your idea — AI writes the code and the wiring for your real board, then flashes it over USB. No toolchain, no setup.
Every generation hands back a compiling sketch and a pin-perfect wiring map — constrained to the exact board you picked.
// reads a BME280, prints °C to an OLED#include <Adafruit_BME280.h>#include <Adafruit_SSD1306.h>Adafruit_BME280 bme;Adafruit_SSD1306 oled(128, 64, &Wire);void setup() {Wire.begin(21, 22); // SDA, SCLbme.begin(0x76);oled.begin(SSD1306_SWITCHCAPVCC, 0x3C);}void loop() {float t = bme.readTemperature();oled.clearDisplay();oled.printf("%.1f C", t);oled.display();}
WIRING
Checked against the board GPIO map
8 boards at launch — every one community-tested on real silicon.
VerifiedThe wifi+BLE workhorse. Golden path — flashes straight from the browser.
Verified$4 dual-core M0+ with PIO. Drag-and-drop flashing over BOOTSEL.
VerifiedARM Cortex-M0+ with an on-board ST-LINK — nothing extra to wire.
VerifiedDual-brain: a Linux MPU beside an STM32 MCU in the UNO footprint.
The AI only sees your board's actual GPIO map, peripherals and limits — no hallucinated pins.
Anyone with a kit can add & verify a board file. Coverage grows with the community.
ESP & Pico flash straight from Chrome over USB. Everything else falls back to a download.
“It set up the I2C bus on the right pins the first time. I had a working sensor node before my coffee went cold.”
“No PlatformIO yak-shaving, no PATH wrangling. I describe the behaviour, preview it, and it lands on the board over USB.”
“My students go from idea to a blinking board in one class. The wiring map is what finally made it click for them.”
Credits cover AI generations. Flashing, preview and export are always free.
Free
$0 forever
Starter
$25
100 credits / mo
Pro
$50
500 credits / mo
Enterprise
Custom volume pricing
Describe it, flash it, ship it — all from your browser.