Using Psychtoolbox KbCheck() functions, how can I test for a renewed keypress?
Show older comments
In my experiment, I would like to record participants' responses recorded as keypresses on every trial. I am recording responses with the following code, wherein KbActive is a variable containing all active response keys and responseGiven = 0 by default.
[keyIsDown, timeSecs, keyCode] = KbCheck([],kbActive);
if keyIsDown & responseGiven == 0 %no response registered so far
KbWait();
keyPressed = find(keyCode, 1);
keyName = kbLabels(keyPressed);
.....
end
Subjects are asked to press a button on every trial and each renewed button press should be registered. Using the current code, however, a response is also registered on each trial when continuously pressing down the button. Thus, instead of checking for a new response, the function just checks whether any key is down and does not differentiate whether the the key is pressed in the current trial, or whether it is still pressed for the previous trial, which would constitute an invalid response.
I considered using the function KbReleaseWait() to circumvent the problem of registering continuously pressed buttons as responses. However, using this function introduces another problem. When using this function, the experiment stops until the key is released, which introduces unintended timing inaccuracies in my experiment.
From the specifications and descriptions of KbCheck and related functions I am not certain whether I can check for renewed keyboard pressed on every trial using Psychtoolbox extensions. Could you help me clarifying this question?
Accepted Answer
More Answers (0)
Categories
Find more on Timing and presenting 2D and 3D stimuli in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!