Cursor for hardware

Go from idea to working prototype in minutes, not weekends. Just tell it what you want.

Arduino · ESP32 · Raspberry Pi Pico

Press Enter to start

Start from a template

From idea to hardware

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);
}

What you get

Plain English in, hardware out

No pin numbers, datasheets, or wiring tables. Just describe what you want.

Full wiring + assembly

Color-coded diagrams and numbered build steps so nothing gets crossed.

Arduino, ESP32, Pico

Works with the boards you already own and hundreds of common components.

One-click flash

Deploy directly to your board via PlatformIO. Done in under a minute.

Made for makers

No EE degree needed. If you can type a sentence, you can ship hardware.

Export everything

Download code, schematics, and guides. Tinker, learn, make it yours.

We're hiring

1 X Founding Designer
2 X Founding Software Engineer

This is a founding role. You'll be part of core decisions and help shape the tool and company from day 0. You're comfortable with ambiguity, like not having a giant job description (sorry!).

If this sounds like you:

  • You want to shape the future of how hardware gets built
  • You like wearing many hats
  • You love AI and moving fast while blasting through a gazillion tokens every week
  • You like tinkering and building cool side projects
  • You live in Amsterdam, or want to move there

This job is probably for you.
We love people from all backgrounds, and if you're in doubt - please reach out.
Email sam@schematik.io and let's chat.

Ready to build?

Follow @schematikio on X for updates