RaioLink provides the official connectivity layer for RaioTerm "Pair" devices. It abstracts away the complex binary framing (0xC0 protocol) and provides a simple Chat-like interface for your microcontroller.
- ESP32 (All variants)
- ESP8266 (NodeMCU, D1 Mini)
- Raspberry Pi Pico W (Arduino Core)
#include <RaioLink.h>- Create object:
RaioLink link(mqttClient); - Setup:
link.begin("pair_123", 'A'); - Loop:
link.join()inside your MQTT reconnect block.