Support / field manual
Find the fault.Keep the signal.
A direct route from the first connection to signal quality, WebSocket output, integrations, and diagnostics—without hiding the system behind a help center.
01 / Fast route
Three steps to
a visible stream.
Begin with the official installation path, verify the stream in the browser, then connect the application layer.
Install the Server
Enable SPI, install PiEEG Server, and start the service on Raspberry Pi OS.
pip install pieeg-server02 / 01 MINOpen the Dashboard
Connect through the local browser dashboard and inspect the live stream.
http://raspberrypi.local:161703 / 03 MINStream from Code
Connect a WebSocket client to the local server; the stream uses plain JSON.
ws://raspberrypi.local:161602 / Manual index
Enter at the layer
you are working on.
The documentation is organized around the real acquisition path: hardware, server, stream, integration, and diagnosis.
Start
Hardware
Software
Interface
03 / Bench commands
Use the
actual path.
These commands match the official PiEEG Server workflow.
Install and launchShell
pip install pieeg-server
sudo reboot
pieeg-serverStream via PythonWebSocket
async with websockets.connect(
"ws://raspberrypi.local:1616"
) as ws:
async for msg in ws:
print(json.loads(msg)["channels"])Run diagnosticsCLI
pieeg-server doctor04 / Still blocked?
Bring the issue
into the open.
Use GitHub for reproducible software issues, Discord for builder-to-builder help, or email for a direct support question.