A Python package for direct serial communication with the NeuroPawn Knight EEG board.
pyseriallibrary- NeuroPawn Knight Board
- Serial port access (usually
/dev/ttyUSB0on Linux)
-
Install pyserial:
pip install pyserial
-
Copy the package into your project:
your_project/ ├── knight_reader/ │ ├── __init__.py │ └── knight_reader.py └── your_script.py -
Ensure serial port permissions (Linux):
sudo usermod -a -G dialout $USER # Log out and back in, or: sudo chmod 666 /dev/ttyUSB0
See example.py
MIT License