01
Describe
Tell Schematik what you want in plain English. No datasheets or pin lookups required.
Go from idea to working prototype in minutes, not weekends. Just tell it what you want.
Arduino · ESP32 · Raspberry Pi Pico
Start from a template

Smart Home
Gesture-Controlled Mood Lamp

Robotics
Self-Balancing Rover Telemetry

Communication
ESP32 Kids Phone

Wearables
Fitness Wristband Prototype

Pico Playground
Pico Cosmic Critter

Companion Bot
ClawdBot Tamagochi

Games
Arcade Reaction Tower

Music
Laser Harp Synth

Adventure
RFID Treasure Chest

Weird & Fun
Plant Disco Guardian

Time & Fun
Rocket Launch Alarm

Smart Home
ESP32 Weather Station

Gaming
Touchscreen Chess on a Cheap Yellow Display

Smart Home
LED Matrix Message Board
Three steps. No electrical engineering degree required.
01
Describe
Tell Schematik what you want in plain English. No datasheets or pin lookups required.
02
Review
Get complete source code, wiring diagrams, and assembly instructions in seconds.
03
Build
Flash directly via PlatformIO or export everything to customize on your own.
Example output
main.cpp
#include <Wire.h> #include <Adafruit_SSD1306.h> #include <DHT.h> #define DHT_PIN 4 #define DHT_TYPE DHT22 #define SCREEN_W 128 #define SCREEN_H 64 // Sensor & display instances DHT dht(DHT_PIN, DHT_TYPE); Adafruit_SSD1306 display(SCREEN_W, SCREEN_H, &Wire); void setup() { dht.begin(); display.begin(SSD1306_SWITCHCAPVCC, 0x3C); display.clearDisplay(); } void loop() { float temp = dht.readTemperature(); float hum = dht.readHumidity(); display.clearDisplay(); display.setTextSize(1); display.setCursor(0, 0); display.printf("Temp: %.1f C", temp); display.setCursor(0, 20); display.printf("Hum: %.0f%%", hum); display.display(); delay(2000); }
In the wild
I made my own version with Paulie Walnuts from The Sopranos. All possible thanks to @marcvermeeren and @schematikio.


Another day, building with my fav tool. Using Schematik to make hardware easier.

My colleague Nikola made this with @schematikio as a go away gift :) honestly, the best.

M5 Stickにインストールできた。Claude Code の state を emotion で受け取る感じ。かわいいー🥰 サイトもかわいい (don't click the paw).

Built BroccoliPods, a physical Spotify controller with tracks, volume, album art, artist name, and a progress bar using ESP32-S3, buttons, a display, and SchematikIO.

Made a cute little companion called clawy to manage my Claude Code sessions in a fun and easy way while on the go around the house.


Schematik で iPhone の Spotify App をコントロールするコードを作ってみた。今はキャラクター表示だけど…

I made my own version with Paulie Walnuts from The Sopranos. All possible thanks to @marcvermeeren and @schematikio.


Another day, building with my fav tool. Using Schematik to make hardware easier.

My colleague Nikola made this with @schematikio as a go away gift :) honestly, the best.

M5 Stickにインストールできた。Claude Code の state を emotion で受け取る感じ。かわいいー🥰 サイトもかわいい (don't click the paw).

Built BroccoliPods, a physical Spotify controller with tracks, volume, album art, artist name, and a progress bar using ESP32-S3, buttons, a display, and SchematikIO.

Made a cute little companion called clawy to manage my Claude Code sessions in a fun and easy way while on the go around the house.


Schematik で iPhone の Spotify App をコントロールするコードを作ってみた。今はキャラクター表示だけど…

No pin numbers, datasheets, or wiring tables. Just describe what you want.
Color-coded diagrams and numbered build steps so nothing gets crossed.
Works with the boards you already own and hundreds of common components.
Deploy directly to your board via PlatformIO. Done in under a minute.
No EE degree needed. If you can type a sentence, you can ship hardware.
Download code, schematics, and guides. Tinker, learn, make it yours.