Hi,
I had written the below code to record keyboard presses during a shock-conditioning trial. In each trial a picture is displayed left or right of the centre of the screen, and the participant is instructed to respond with a left or right arrow key. In some cases, the participant will experience a mild electric shock half a second after the image appears on the screen).
My problem is that I need to alter this script now so that it responds to mouse clicks instead of keyboard presses. I know that KbWait works for mouseclick, but I have had trouble finding a similar translation for KbQueueCheck. If I were to use KbWait, I would somehow need to run that loop in parallel to the delay+shock loop.
I would be incredibly grateful for any pointers. Thank you in advance!
[Image displayed on screen]
KbQueueFlush;
imagetime=GetSecs;
WaitSecs(0.5); %half second delay before shock
[Code for shock delivery]
[pressed, firstPress]=KbQueueCheck; %check if any key was pressed
if pressed %if key was pressed do the following
firstPress(find(firstPress==0))=NaN; %little trick to get rid of 0s
[endtime, Index]=min(firstPress); % gets the RT of the first key-press and its ID
keyname=KbName(Index); %converts KeyID to keyname
rt=endtime-imagetime; %reaction time
else
rt=1000; %reactiontime set to 1000 indicating there was no response
keyname = 'NoKeyPress';
end
I had written the below code to record keyboard presses during a shock-conditioning trial. In each trial a picture is displayed left or right of the centre of the screen, and the participant is instructed to respond with a left or right arrow key. In some cases, the participant will experience a mild electric shock half a second after the image appears on the screen).
My problem is that I need to alter this script now so that it responds to mouse clicks instead of keyboard presses. I know that KbWait works for mouseclick, but I have had trouble finding a similar translation for KbQueueCheck. If I were to use KbWait, I would somehow need to run that loop in parallel to the delay+shock loop.
I would be incredibly grateful for any pointers. Thank you in advance!
[Image displayed on screen]
KbQueueFlush;
imagetime=GetSecs;
WaitSecs(0.5); %half second delay before shock
[Code for shock delivery]
[pressed, firstPress]=KbQueueCheck; %check if any key was pressed
if pressed %if key was pressed do the following
firstPress(find(firstPress==0))=NaN; %little trick to get rid of 0s
[endtime, Index]=min(firstPress); % gets the RT of the first key-press and its ID
keyname=KbName(Index); %converts KeyID to keyname
rt=endtime-imagetime; %reaction time
else
rt=1000; %reactiontime set to 1000 indicating there was no response
keyname = 'NoKeyPress';
end