Difference between revisions of "Eye Controlled Interaction"

From REALab Wiki
Jump to navigation Jump to search
Line 1: Line 1:
main pain for eye controlled interaction; in-depth explanation on how to use
*[[media:ECI_Manual_EN.pdf‎|Eye Controlled Interacton Manual]]


u = udp('127.0.0.1',65000,'LocalPort',65000, 'InputBufferSize', 409600);
u = udp('127.0.0.1',65000,'LocalPort',65000, 'InputBufferSize', 409600);

Revision as of 20:33, 3 December 2012

u = udp('127.0.0.1',65000,'LocalPort',65000, 'InputBufferSize', 409600); u.Terminator = 'LF/CR'; %tell it about line endings fopen(u);


A = fscanf(u); C =regexp(A, '\t', 'split');


fclose(u); delete(u);