Group: Administrators
Posts: 13K,
Visits: 104K
|
Hi Tony,
as I've never actually done this in Inquisit, I'm kinda venturing on unknown territory here, but I'll tell you how I'd do it, anyway...;-) First, I'm suspecting that communication with your EEG is done via the computer's LPT port. I also suspect that you've already defined a working <port> element in Inquisit. As you know, the <port> element essentially behaves like any other stimulus (picture, text, etc.). So, in your trials, you could specify some /responsemessage attributes to "present" the respective port stimulus (thus sending a signal to your EEG as soon as a participant has responded). For example:
<port EEGsignal> / port = LPT1 / subport = data / items = ("00000001") </port>
<trial EEGtrial> / stimulusframes = [1=somepicture] / validresponse = ("a", "b") / responsemessage = ("a", EEGsignal, 0) / responsemessage = ("b", EEGsignal, 0) </trial>
I'm pretty sure there are numerous other ways to do this, but I think my suggestion might work for you. Please report back!
Best, ~Dave
|