33 linhas
798 B
Python
33 linhas
798 B
Python
import sys; sys.path.append('..') # help python find open_bci_v3.py relative to scripts folder
|
|
import open_bci_v3 as bci
|
|
import os
|
|
import logging
|
|
import time
|
|
|
|
def printData(sample):
|
|
#os.system('clear')
|
|
print "----------------"
|
|
print("%f" %(sample.id))
|
|
print sample.channel_data
|
|
print sample.aux_data
|
|
print "----------------"
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
port = '/dev/tty.usbserial-DN0096XA'
|
|
baud = 115200
|
|
logging.basicConfig(filename="test.log",format='%(message)s',level=logging.DEBUG)
|
|
logging.info('---------LOG START-------------')
|
|
board = bci.OpenBCIBoard(port=port, scaled_output=False, log=True)
|
|
|
|
#32 bit reset
|
|
board.ser.write('v')
|
|
time.sleep(0.100)
|
|
|
|
#connect pins to vcc
|
|
board.ser.write('p')
|
|
time.sleep(0.100)
|
|
|
|
#board.start_streaming(printData)
|
|
board.print_packets_in() |