
pyespargos is the Python library for working with the ESPARGOS WiFi channel sounder. ESPARGOS is a real-time-capable, phase-synchronous 2 × 4 WiFi antenna array built from Espressif ESP32 chips that facilitates the development and deployment of WiFi sensing applications.
The library supports combining multiple ESPARGOS arrays into larger antenna arrays, various CSI preamble formats (L-LTF, HT20, HT40), and provides a flexible calibration system for multi-board setups.
| Your ESPARGOS looks like this: | Your ESPARGOS looks like this: |
|---|---|
![]() |
![]() |
→ You have the current ESPARGOS, please use the main branch of this repository. |
→ You have the older prototype generation of ESPARGOS, please use the legacy-prototype branch of this repository. This hardware revision is no longer supported. |
| MUSIC Spatial Spectrum | Receive Signal Phase by Antenna |
|---|---|
![]() |
![]() |
| Instantaneous CSI: Frequency Domain | Instantaneous CSI: Time Domain |
![]() |
![]() |
| Phases over Time | Combined 8 × 4 ESPARGOS Array |
![]() |
![]() |
pyespargos comes with a selection of demo applications for testing ESPARGOS.
All demos are built on a common application framework (demos/common) that provides:
* A consistent command-line interface and YAML configuration support
* A graphical pool management drawer for connecting to ESPARGOS devices
* Selectable preamble formats (L-LTF, HT20, HT40)
* Configurable CSI backlog settings
The following demos are provided in the demos folder of this repository:
| Demo | Description |
|---|---|
music-spectrum |
Use the MUSIC algorithm to display a spatial (angular) spectrum. Demonstrates angle of arrival (AoA) estimation. |
phases-over-space |
Show the average received phase for each ESPARGOS antenna. |
instantaneous-csi |
Plot the current frequency-domain or time-domain transfer function of the measured channel. |
phases-over-time |
Plot the average received phase for every antenna over time. |
tdoas-over-time |
Visualize time difference of arrival (TDOA) measurements over time. |
azimuth-delay |
Display a 2D azimuth-delay diagram using beamspace processing. Requires shaders to be compiled first (see `demos/azimuth-delay/README.md). |
polarization |
Visualize WiFi signal polarization using constellation diagrams and polarization ellipses. |
speedtest |
Measure CSI packet throughput from ESPARGOS. |
combined-array |
Combine multiple ESPARGOS arrays into one large antenna array and visualize the average received phase for each antenna. Requires multiple ESPARGOS arrays. |
combined-array-calibration |
Tool for calibrating combined multi-board antenna arrays. Visualizes and exports calibration data. |
camera |
Overlay WiFi spatial spectrum on a live camera feed. Requires shaders to be compiled first (see demos/camera/README.md). |
radiation-pattern-3d |
Interactive 3D radiation pattern visualization. Requires additional packages (see demos/radiation-pattern-3d/README.md). |
Most demos support both single ESPARGOS arrays and combined multi-board setups via command-line arguments or YAML configuration files.
pyespargos requires Python 3.11 or newer. Follow the instructions for your operating system below.
Click to expand Linux instructions
Most Linux distributions ship with Python pre-installed. Verify by running:
python3 --version
If Python is not installed or the version is too old, install it using your package manager:
# Debian / Ubuntu / Raspberry Pi OS (Raspbian)
sudo apt update && sudo apt install python3 python3-venv python3-pip
# Fedora
sudo dnf install python3 python3-pip
# Arch Linux
sudo pacman -S python python-pip
git clone https://github.com/ESPARGOS/pyespargos.git
cd pyespargos
python3 -m venv .venv
source .venv/bin/activate
Note: You need to run
source .venv/bin/activate(from thepyespargosdirectory) every time you open a new terminal before using pyespargos.
pip install -e .
If you want to run the demo applications:
pip install pyqt6 pyqt6-charts pyyaml matplotlib
If you want to run demos such as camera and azimuth-delay, you will also need Qt Shader Baker (qsb):
# Debian / Ubuntu / Raspberry Pi OS (Raspbian)
sudo apt install qt6-shader-baker
# Fedora
sudo dnf install qt6-qtshadertools
# Arch Linux
sudo pacman -S qt6-shadertools
Note: The
compile_shader.shscripts currently expectqsbat/usr/lib/qt6/bin/qsb. If your distribution installs it elsewhere, update the script accordingly.
(not recommended)
Click to expand Windows instructions
If you don't have Python installed yet:
python --version
Tip: You can also install Python from the Microsoft Store by searching for "Python".
git clone https://github.com/ESPARGOS/pyespargos.git
Open a Command Prompt window (not PowerShell):
cd pyespargos
python -m venv .venv
.venv\Scripts\activate
Note: You need to activate the virtual environment every time you open a new terminal before using pyespargos.
pip install -e .
If you want to run the demo applications:
pip install pyqt6 pyqt6-charts pyyaml matplotlib
If you want to run demos such as camera and azimuth-delay, you will also need Qt 6 so that qsb.exe (Qt Shader Baker) is available. The simplest option is to use the Qt Online Installer and install a desktop Qt 6 kit.
Note: The shader batch scripts currently default to
C:\Qt\6.10.2\mingw_64\bin\qsb.exe. If your Qt installation is in a different location, either update theQSBpath in the.batscripts or add the Qtbindirectory toPATH.
(not recommended)
Click to expand macOS instructions
The recommended way to install Python on macOS is via Homebrew:
# Install Homebrew (if not already installed)
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Install Python
brew install python
Important: After installing Python with Homebrew, close and re-open your terminal so that the Homebrew-installed Python is used instead of the older macOS system Python.
Verify the installation:
python3 --version
Alternative: You can also download the installer from python.org/downloads.
git clone https://github.com/ESPARGOS/pyespargos.git
cd pyespargos
python3 -m venv .venv
source .venv/bin/activate
Note: You need to run
source .venv/bin/activate(from thepyespargosdirectory) every time you open a new terminal before using pyespargos.
pip install -e .
If you want to run the demo applications:
pip install pyqt6 pyqt6-charts pyyaml matplotlib
If you want to run demos such as camera and azimuth-delay, you will also need Qt Shader Baker (qsb). One option is:
brew install qt
Then verify that qsb is available:
qsb --version
Note: If
qsbis not on yourPATH, use the full path from your Qt installation when runningcompile_shader.sh.
After installing pyespargos and the demo dependencies (steps above), you can run a demo. Make sure the virtual environment is activated, then run the following from the pyespargos directory.
For example, to run the Instantaneous CSI demo with an ESPARGOS controller at 192.168.1.2:
Linux / macOS:
./demos/instantaneous-csi/instantaneous-csi.py 192.168.1.2
Windows (Command Prompt):
python demos\instantaneous-csi\instantaneous-csi.py 192.168.1.2
If you have multiple ESPARGOS boards, pass their addresses separated by commas:
python demos/instantaneous-csi/instantaneous-csi.py 192.168.1.2,192.168.1.3
Other demos may ask for different command line arguments.
Run any demo with --help to see the available options.
ESPARGOS can also tunnel its control and CSI traffic over the USB serial connection. This is useful if you do not have Ethernet available, or if you want to configure ESPARGOS network settings through USB before putting it on a network.
There are two ways to use the USB UART connection:
The tools/espargos-uart-router.py helper exposes an ESPARGOS USB serial connection as a local HTTP / WebSocket endpoint.
After connecting ESPARGOS to your computer via USB-C, run:
python tools/espargos-uart-router.py uart:/dev/ttyUSB0
Replace /dev/ttyUSB0 with the serial device used by ESPARGOS on your computer.
Typical examples are:
uart:/dev/ttyUSB0 or uart:/dev/ttyACM0uart:/dev/tty.usbserial-...uart:COM3By default, the router listens on 127.0.0.1:8400.
Open http://127.0.0.1:8400 in your browser to use the ESPARGOS web interface through USB.
Note: Firmware updates are not supported through the UART router. Use Ethernet for firmware updates.
All pyespargos demos and APIs that accept an ESPARGOS host can also use a UART host specifier instead of an IP address or hostname.
Use the format uart:<serial-device>.
For example, to run the Instantaneous CSI demo over USB on Linux:
./demos/instantaneous-csi/instantaneous-csi.py uart:/dev/ttyUSB0
On Windows:
python demos\instantaneous-csi\instantaneous-csi.py uart:COM3
In your own Python code, pass the same host string to espargos.Board:
board = espargos.Board("uart:/dev/ttyUSB0")
If you need to override the default UART baud rate, append it after @, for example uart:/dev/ttyUSB0@3000000.
Note: The UART router and pyespargos direct UART access both need exclusive access to the serial device. Do not run the router while a pyespargos demo or application is connected directly to the same
uart:...device.
To create your own ESPARGOS-based application, you have two options:
* Use the Python + PyQt6 + QML framework used by the other demos. This is the fastest way to get up and running, just start by modifying an existing demo.
* Write your application from scratch using only the pyespargos library
After installation, import the espargos package in your Python application. Use this minimal sample code to get started:
```python
import espargos import time
pool = espargos.Pool([espargos.Board("192.168.1.2")]) pool.start() pool.calibrate(duration=2)
backlog = espargos.CSIBacklog(pool, fields=["lltf", "rssi"], size=20) backlog.start()
try: # Wait a moment so the backlog can collect some WiFi packets. time.sleep(4)
if backlog.nonempty():
csi_lltf, rssi = backlog.get_multiple(("lltf", "rssi"))
print("L-LTF backlog shape:", csi_lltf.shape)
print("RSSI backlog:", rssi)
else:
$ claude mcp add pyespargos \
-- python -m otcore.mcp_server <graph>