IoT for Vibe Coders
Ship hardware projects like
you ship web apps
Flash a device. Send data. Query it via API.
If it takes more than 10 minutes, we've failed.
Join the waitlist. No spam, just shipping.
The Old Way
Building IoT products today requires becoming an AWS architect. You get stuck for weeks configuring brokers, certs, and policies.
- ❌ Hundreds of lines of boilerplate
- ❌ Manual certificate management
- ❌ DIY OTA update systems
- ❌ Weeks to first data point
The Paqett Way
An IoT platform with the developer experience of Vercel. Opinionated, batteries-included, and designed around shipping.
- ✅ Flash a device, get an endpoint
- ✅ Auto-stored & queryable data
- ✅ OTA updates like `git push`
- ✅ Minutes, not weeks
The Code is the Interface
device.cpp
#include <Paqett.h>
Paqett device("project_key");
void loop() {
// Send temperature every loop
device.send("temperature", getTemp());
// Handle OTA, health checks, retries
device.update();
}app.js
const data = await paqett
.query("temperature")
.last(24, "hours")
.get();
console.log(data);
// [
// { value: 21.5, ts: "2023-10-01T..." },
// { value: 22.1, ts: "2023-10-01T..." }
// ]