Serial Studio turns data from your hardware into a live dashboard.
Connect an Arduino, ESP32, STM32, Raspberry Pi, Teensy, or any device that speaks serial, Bluetooth, a network protocol, or an industrial bus. Describe the data format once in a project file, and Serial Studio draws plots, gauges, maps, and 3D views around it. Send commands back with buttons, sliders, and knobs. Record a session, replay it later, or export it as a PDF report. No scrolling terminal, no custom GUI to maintain.
It runs on Windows, macOS, Linux, and Raspberry Pi.
Connect to almost anything. Serial/UART, Bluetooth LE, TCP/UDP, CAN Bus, Modbus TCP/RTU, MQTT, Audio, raw USB (libusb), HID (gamepads, custom devices), and Process I/O. One project can talk to several devices at once, each on its own protocol.
Visualize data live. 15+ widget types: line plots, XY plots, gauges, bar charts, GPS maps, FFT spectrum, accelerometer, gyroscope, compass, data grids, 3D views, and live camera feed. 60 FPS with under 50 ms latency.
Configure dashboards without custom code. The Project Editor lets you define groups, datasets, and widgets through structured forms, closer to editing a schema than coding a UI. Or skip the project file entirely with Quick Plot: print comma-separated values from your device and see them plot instantly. Workspaces split large projects into focused tabs, with a taskbar search for big setups.
Parse and transform data. Write frame parsers in JavaScript or Lua 5.4, or pick from 20+ templates (MAVLink, NMEA, UBX, RTCM, MessagePack, COBS, SLIP, JSON, Modbus, and more). Apply per-dataset transforms (EMA filters, scaling, calibration, unit conversion) with short scripts that run every frame, no re-flashing firmware needed. Data Tables act as a shared bus so transforms can derive virtual datasets from each other.
Send commands back. Buttons, toggles, sliders, knobs, text fields, and freeform output panels run JS templates that emit GCode, SCPI, Modbus, NMEA, CAN, or whatever your device speaks. Define Actions with optional timers for polling or periodic control.
Record, replay, and share. Export to CSV or MDF4. Record full sessions (frames plus raw bytes) into a SQLite database, then browse, tag, replay, or export them from the Database Explorer. Turn a session into a styled HTML or PDF report with interactive charts for sharing results. Transfer files over XMODEM, YMODEM, or ZMODEM with CRC and crash recovery.
Automate and integrate. A TCP API on port 7777 exposes 290+ commands for programmatic control. An MCP server lets AI models like Claude drive the app directly for automated analysis.
Industrial and automotive ready. A Modbus register-map importer (CSV/XML/JSON) builds a ready-to-use project straight from vendor documentation. DBC files import decoded CAN signals.
New here? The help center has FAQs, use cases, and comparisons with similar tools.
Serial Studio is available as source code and as official precompiled binaries for Windows, macOS, and Linux.
Requires the Microsoft Visual C++ Redistributable (x64). On first launch Windows may warn about an unknown developer. Click "More Info → Run Anyway" to continue.
Distributed as a universal DMG. Open the DMG and drag Serial Studio into Applications. You can also install it via Homebrew:
brew install --cask serial-studioThe Homebrew cask is community-maintained. It's available, but not officially tested by me.
The recommended way to install on Linux is via the official AppImage. Download it from the latest release, then make it executable and run it (replace <version> with the version you downloaded):
chmod +x SerialStudio-Pro-<version>-Linux-x64.AppImage
./SerialStudio-Pro-<version>-Linux-x64.AppImageIf the AppImage fails to launch, your system is probably missing libfuse2:
sudo apt install libfuse2For better desktop integration (menu entries, icons, updates), use AppImageLauncher.
Serial Studio is on Flathub. That version gets regular updates and tends to work better on ARM64. On some desktop environments, mostly Wayland, you may see small visual glitches like missing window shadows.
An ARM64 AppImage is available for Raspberry Pi and similar boards. Performance depends on your GPU drivers since the UI is GPU-accelerated. Requirements:
- A 64-bit Linux distro equivalent to or newer than Ubuntu 24.04 (needs
glibc 2.38) libfuse2installed
- Project file mode (recommended): Define your data format and dashboard in the Project Editor, using structured forms for groups, datasets, and widgets.
- Quick plot mode: Drop in comma-separated values from Arduino and get an instant plot.
- Console only mode: Use Serial Studio as a plain terminal without any dashboard.
- Protocols: Serial/UART, Bluetooth LE, TCP/UDP, Audio, raw USB, HID, Process I/O, plus MQTT, Modbus TCP/RTU, and CAN Bus (Pro).
- Visualization: 15+ widgets — line plots, gauges, bar charts, GPS maps, FFT, accelerometer, gyroscope, compass, data grids, 3D views, and live camera feed (some Pro).
- Output widgets: buttons, toggles, sliders, knobs, text fields, and freeform panels, with JS templates for GCode, SCPI, Modbus, NMEA, CAN, and more (Pro).
- Custom parsing: JavaScript or Lua 5.4 frame parsers, plus 20+ templates (MAVLink, NMEA 0183/2000, UBX, SiRF, RTCM, MessagePack, TLV, COBS, SLIP, JSON, XML, YAML, INI, Modbus, …).
- Per-dataset transforms: short JS or Lua snippets to filter, scale, calibrate, or derive values every frame.
- Data Tables: shared bus for system datasets, user-defined constants and computed registers, and virtual datasets built entirely from transforms.
- Workspaces: split large projects into focused dashboard tabs, with a taskbar search.
- CSV export: every frame, ready for Excel, Python, MATLAB, or R.
- MDF4: read and write MDF4/MF4 for CAN Bus, LIN, FlexRay, and analog (Pro).
- Session database: record frames and raw bytes into SQLite, then browse, tag, export, and replay in the Database Explorer (Pro).
- Session reports: export a session as a styled HTML or PDF with interactive Chart.js plots (Pro).
- File transfer: XMODEM, YMODEM, and ZMODEM with CRC and crash recovery (Pro).
- Modbus register maps: import CSV, XML, or JSON straight from vendor docs (Pro).
- CAN DBC import: decoded signals for automotive and industrial work (Pro).
- Image view: live JPEG or PNG camera streams alongside telemetry on the same connection (Pro).
- Multi-device: several devices in one project, each with its own protocol (Pro).
- TCP API on port 7777: 290+ commands for programmatic control (see the API client example).
- AI integration: Claude and other models via the Model Context Protocol (see MCP Client).
- Fast and cross-platform: 60 FPS, under 50 ms latency, on Windows 10/11, macOS 11+ (Intel and Apple Silicon), Linux x64, and Raspberry Pi ARM64.
- Dual licensed: open source GPL-3.0 core with proprietary Pro features (see LICENSE.md).
You can be up and running in about five minutes.
- Grab the latest release for your platform (see Download).
- Windows: run the installer. Allow "Unknown developer" if prompted.
- macOS: drag to Applications, then right-click and choose Open the first time.
- Linux:
chmod +xthe AppImage and run it. You may needsudo apt install libfuse2.
- Launch Serial Studio.
- Pick your serial port and baud rate (9600 and 115200 are common).
- Click Connect.
- Quick plot mode: send comma-separated values and watch them plot live.
- Project mode: build a custom dashboard in the Project Editor, complete with gauges, maps, and more.
- Examples: browse
/examplesfor Arduino sketches, ESP32 code, and Python scripts.
void setup() {
Serial.begin(9600);
}
void loop() {
int temperature = analogRead(A0);
int humidity = analogRead(A1);
Serial.print(temperature);
Serial.print(",");
Serial.println(humidity);
delay(100);
}Upload, connect Serial Studio, enable Quick Plot, and you're done.
First time using it? The help center covers troubleshooting and common questions.
- Help center: FAQs, use cases, comparisons, troubleshooting.
- Local help docs: Markdown source for the in-app help center.
- AI agent guide: for ChatGPT, Claude, and other assistants.
- API reference: full TCP API and automation docs.
- gRPC server: protobuf API and streaming reference.
- Examples: Arduino, ESP32, Python code with sample projects.
- Installation for Windows, macOS, Linux, and Raspberry Pi.
- Quick start: connect an Arduino or ESP32 and visualize data in five minutes.
- Dashboard creation: build layouts in the Project Editor and split them into workspaces.
- Protocol support: Serial/UART, Bluetooth LE, MQTT, Modbus TCP/RTU, CAN Bus, TCP/UDP, Audio, raw USB, HID, Process I/O.
- Frame parsing: handle binary protocols, checksums, and custom formats in JavaScript or Lua 5.4.
- Per-dataset transforms: EMA filters, scaling, calibration, and virtual datasets via Data Tables.
- Output widgets: send commands back with buttons, sliders, knobs, toggles, and output panels (Pro).
- File transfer: XMODEM, YMODEM, and ZMODEM over the active connection (Pro).
- CSV export and playback: log sensor data and replay it.
- MDF4 playback and export: CAN Bus, LIN, FlexRay, and analog (Pro).
- Session database and Explorer: record, tag, export, and replay full sessions from SQLite (Pro).
- Session reports: export HTML or PDF reports with interactive Chart.js plots (Pro).
- TCP API: 290+ commands for programmatic control (see API Client).
Minimum:
- Qt 6.7 or later (6.9.2 recommended). Required modules: QtCore, QtGui, QtWidgets, QtSerialPort, QtNetwork, QtCharts, QtSvg, QtBluetooth, QtQuick.
- C++20 compiler: GCC 10+ (Linux), Clang 12+ (macOS), or MSVC 2019+ (Windows).
- CMake 3.16 or later.
- Platform toolchain (see below).
Platform specifics:
sudo apt install libgl1-mesa-dev build-essentialxcode-select --install
brew install qt@6Visual Studio 2019 or later with the C++ workload, and Qt from the official installer.
All C/C++ dependencies (zlib, expat, OpenSSL, KissFFT, and so on) are vendored in lib/ or fetched automatically via CMake's FetchContent. No package manager is needed.
cmake -B build -DPRODUCTION_OPTIMIZATION=ON -DCMAKE_BUILD_TYPE=Release
cmake --build build -j$(nproc)You can also open CMakeLists.txt in Qt Creator or any CMake-aware IDE without extra setup.
By default the build produces a fully GPLv3-compliant version. It includes most core features but leaves out commercial modules like MQTT, 3D visualization, XY plotting, and other advanced tools that depend on proprietary Qt components.
If you are a Pro user or have a commercial license, contact the maintainer for build instructions and activation details.
Serial Studio is developed and maintained by Alex Spataru. It is open source and community-driven, with commercial options for users who need advanced features or a business-friendly license.
If Serial Studio is useful to you, here are a few ways to support it:
- Donate via PayPal: keeps the project active.
- Buy a commercial license: required for commercial use of the official binary. Includes Pro features and priority support.
- Become an affiliate: a good fit for content creators who want to earn a commission by referring new customers.
Commercial licenses directly fund development, bug fixes, and new features.
Serial Studio uses a dual-license model that separates open source usage from commercial distribution:
- LICENSE.md: summary of the dual-license structure and usage terms.
- LICENSES/GPL-3.0-only.txt: full GNU GPLv3 text for open source source code.
- LICENSES/LicenseRef-SerialStudio-Commercial.txt: full terms for proprietary features and official binaries.
Source files are individually marked with SPDX headers, either GPL-3.0-only, LicenseRef-SerialStudio-Commercial, or both. This lets developers build and distribute GPL-compliant versions while keeping commercial features protected.
The table below shows licensing, feature access, and obligations for each edition.
| Feature / use case | GPL version (build it yourself) | Trial version (official binary) | Pro version (activated official binary) |
|---|---|---|---|
| Commercial use | ✅ If fully GPL compliant | ❌ Evaluation only | ✅ Fully licensed |
| Official support | ❌ Community only | ❌ None | ✅ Priority support |
| Pro features | ❌ Not included | ✅ Included | ✅ Included |
| Usage restrictions | Must comply with GPL and Qt terms | 14-day trial, no redistribution | Bound by commercial license terms |
| Precompiled binary | ❌ Must build from source | ✅ Provided for trial only | ✅ Provided |
| Qt licensing | Requires GPL-compatible Qt | Qt licensing covered by vendor | Qt licensing covered by vendor |
| Activation system | ❌ Not applicable | ✅ Trial disables after 14 days | ✅ Requires a valid license key |
| Business use | ✅ If strictly GPL compliant | ❌ Prohibited | ✅ Fully allowed |
| Best for | OSS devs, students, contributors | Hobbyists, personal evaluation | Businesses, teams, commercial products |
Pro features and official binaries are proprietary and need a commercial license for anything beyond personal evaluation. Seeing the source code does not grant GPL rights unless a file is explicitly licensed that way.
Contributions are welcome: bug fixes, new features, or doc improvements.
Before contributing:
- Check existing issues and pull requests.
- Review CLAUDE.md for code style.
- Focus on GPL-licensed code, and leave the commercial modules alone.
Code style:
- Follow the project's clang-format config (LLVM base style).
- Use meaningful names.
- Avoid inline end-of-line comments (see CLAUDE.md).
- Add Doxygen comments for new public APIs.
Submitting changes:
- Fork the repository.
- Create a feature branch (
git checkout -b feature/amazing-feature). - Commit with descriptive messages.
- Push to your fork and open a pull request.
- Make sure CI passes.
For larger changes, open an issue first so we can talk about the approach.
