Skip to content

Commit

Permalink
v4 connectivity added
Browse files Browse the repository at this point in the history
  • Loading branch information
rceballos98 committed Aug 9, 2015
1 parent 4457804 commit 512b502
Show file tree
Hide file tree
Showing 5 changed files with 595 additions and 4 deletions.
3 changes: 1 addition & 2 deletions open_bci_v3.py
Expand Up @@ -72,7 +72,7 @@ def __init__(self, port=None, baud=115200, filter_data=True,
if not port:
raise OSError('Cannot find OpenBCI port')

print("Connecting to %s" %(port))
print("Connecting to V3 at port %s" %(port))
self.ser = serial.Serial(port= port, baudrate = baud, timeout=timeout)

print("Serial established...")
Expand All @@ -84,7 +84,6 @@ def __init__(self, port=None, baud=115200, filter_data=True,

#wait for device to be ready
time.sleep(1)
print("Incoming:")
self.print_incoming_text()

self.streaming = False
Expand Down

0 comments on commit 512b502

Please sign in to comment.