View Single Post
  #8  
Old 10-20-2011, 01:07 PM
pkhoosh pkhoosh is offline
Member
 
Join Date: Feb 2005
Posts: 21
Send a message via AIM to pkhoosh Send a message via Yahoo to pkhoosh
Here's the script again, now using timers instead of the while.
I sent you the CHM file.

Code:
# data aggregation of Eye tracking from SMI and synching with Biopac recording channels

smi = viz.add('smi.dle')

tracker = smi.addEyeTracker(address='192.168.10.1', port=4444)

def showData():
	print tracker.getPosition(smi.PIXELS)	
	print 'Calibration size:',tracker.getCalibrationSize() 
	

vizact.ontimer(0,showData)
Reply With Quote