Ot/Documentation

Ot Documentation

Ot is an IoT dashboard platform built for makers, schools, and classrooms. Connect an ESP32 or Arduino-compatible board, stream sensor readings over MQTT, and watch them live on dashboards you assemble yourself — no backend code required.

How Ot works

Data flows through the platform in four stages:

StageWhat happens
1. DeviceYour board reads sensors and publishes JSON to an MQTT topic using the OtTelemetry Arduino library. The only credential it holds is its device token.
2. BridgeThe Ot telemetry bridge authenticates the token, matches the device to your account, and stores the reading.
3. StorageReadings land in the platform's built-in storage, or in your own Supabase database if you connected one.
4. DashboardWidgets poll for new readings and update live. Alert rules run on each reading and can notify you.

Designed for low bandwidth

A reading is a single small MQTT message. Devices work fine on modest WiFi, and dashboards refresh with lightweight polling rather than heavy streams.

Guides