Permalink
Please sign in to comment.
Showing
with
29 additions
and 3 deletions.
- +9 −1 open_bci_v3.py
- +16 −0 scripts/simple_serial.py
- +4 −2 scripts/test.py
| @@ -0,0 +1,16 @@ | ||
| +import serial | ||
| +import struct | ||
| +import numpy as np | ||
| +import time | ||
| +import timeit | ||
| +import atexit | ||
| +import logging | ||
| +import threading | ||
| +import sys | ||
| +import pdb | ||
| + | ||
| +port = '/dev/tty.OpenBCI-DN008VTF' | ||
| +#port = '/dev/tty.OpenBCI-DN0096XA' | ||
| +baud = 115200 | ||
| +ser = serial.Serial(port= port, baudrate = baud, timeout = None) | ||
| +pdb.set_trace() |
0 comments on commit
4457804