I am trying to make an experiment in PsychoPy 1.81.00 in BUILDER view where 15 conditions (picked up from an XSLX file) repeat once each randomly. The user has to give 2 responses (through 2 keyboard components each running simultaneously for the same duration).
These responses are recorded in an XSLX file.
The key_raw are recorded correctly (as per what user presses) but the corr_raw are wrong (although key_raw and correct response matches, corr_raw is 0 for all the conditions).
I am unable to identify what am I doing wrong.
I was finally able to resolve the issue.It was a naming conflict. The variable name for storing keys was used elsewhere in program and thus was getting overwritten. I changed the names and everything worked perfectly fine.