Four tiers from "zero setup" to "not yet documented". Most lab gear
sits in tier A or B.
Drivers compiled into Muxit. No install, no config beyond the
connection details. Always free.
Examples: USB webcams, ONVIF IP cameras, MQTT
brokers, file-watcher inputs, G-code / GRBL CNC, SMTP / webhook
notifiers, TestDevice (simulator).
AI not needed.
For anything that speaks a standard wire format. Pick a built-in
protocol (Scpi, LineText, or
BinaryStream), point it at a transport (serial, TCP, or
USB-TMC), and describe the device in a short declarative
schema. No driver code. Same shape every time, whether
it's SCPI, plain text lines, or binary frames.
Examples: SCPI scopes, PSUs, DMMs and SMUs (Rigol,
Siglent, Keysight, Tektronix, GW Instek, Aim-TTi, old HP / Agilent);
Arduino and datalogger text streams; Modbus-RTU and other fixed
binary-frame sensors.
AI: end-to-end. Probes the device,
reads the manual or captures a few frames, drafts the schema,
validates, and hot-reloads with no restart. Maker tier and up.
For devices no built-in protocol fits: stateful handshakes,
request/response ASCII oddballs, multi-subsystem instruments, or a
vendor SDK you want to keep using. Write a small driver in JavaScript
(V8 sandbox, with the createSerialTransport /
createTcpTransport factories) or Python (your existing
top-level functions become properties and actions, no boilerplate).
Examples: a request/response ASCII power meter, an
ESP32 with your own framing, in-house DAQ rigs, instruments with only
a vendor Python or C SDK.
AI: scaffolding. Drafts the
driver shell and helps explore the wire with the
serial-probe connector. Wiring up edge cases stays your
call.
D Not (yet) supported
No documented path today
A small but real set of devices have no clean path in Muxit today.
We list them so you can plan, not so you can be surprised after
buying.
Examples: USB HID-only devices (custom HID
controllers, some sensors), raw GPIB without a vendor virtual-COM
shim, CAN bus, vendor binary protocols that don't ride on serial
or TCP.
On the roadmap. If you need one of these, get in touch; it helps
us prioritise.