← Protocol
v0.1.0 Draft

Digital Interoperability Protocol

Purpose

This protocol defines how Orbita's electronics subsystem communicates — between sensors, actuators, the monitoring software, and third-party devices. Following this spec allows any compatible device to integrate with an Orbita unit.

Communication Protocol

MQTT is the primary messaging protocol. It is lightweight, well-suited for constrained IoT devices, and supports pub/sub patterns for real-time sensor data.

Topic Structure

orbita/{unit_id}/sensors/{sensor_type}
orbita/{unit_id}/actuators/{actuator_type}
orbita/{unit_id}/status

Examples:

Payload Format

All messages use JSON. Example sensor payload:

{
  "timestamp": "2026-03-09T12:00:00Z",
  "value": 22.5,
  "unit": "celsius",
  "sensor_id": "temp-01"
}

Example actuator command:

{
  "command": "set",
  "value": true,
  "actuator_id": "vent-01"
}

Sensors

Placeholder — the electronics subsystem is in early planning.

Planned sensor types:

REST API

Placeholder — to be defined alongside the monitoring software.

The Orbita monitoring application will expose a REST API for:

Third-Party Integration

Devices can integrate with an Orbita unit by:

  1. Connecting to the unit's MQTT broker
  2. Publishing/subscribing to the topic structure above
  3. Using the JSON payload format specified in this document

Authentication, device registration, and discovery mechanisms will be defined in future versions.