RAIOTerm is the official Arduino library for USB/BLUETOOTH SPP the RAIOTerm.cc IoT Platform.

RAIOTerm is a lightweight Arduino helper library designed to simplify serial communication using the [FEND][ID]:[VAL][FEND] protocol. It handles packet framing, parsing, and transmission automatically.
- Protocol Automation: Automatically wraps data with start/end markers (
0xC0). - Flexible Stream Support: Works with
Serial,Serial1(Hardware). - Easy Data Handling: Simple
sendandlistencommands.
- Open Arduino IDE.
- Go to Sketch > Include Library > Manage Libraries.
- Search for RAIOTerm.
- Click Install.
#include <RAIOTerm.h>
void setup() {
raiot.begin(115200);
}
void loop() {
raiot.send("temp", 24.5);
delay(1000);
}