Hi everyone! I’m desperate, so I’m doing a lexical decision task with EEG biosemi. I have added the port to psychopy but it doesn’t work. This I the error
3.9924 WARNING psychopy.parallel has been imported but no parallel port driver found. Install either inpout32, inpoutx64 or dlportio
p_port = parallel.ParallelPort(address=‘0x0378’)
TypeError: ‘NoneType’ object is not callable
I really don’t know how to code, but if someone can help me with this it will be much appreciated. I have tried everything but nothing works.
Thanks.
As the error message indicates this is a driver problem, not a programming one.
You’re missing proper parallel port drivers or it isn’t accessible to the script. Be sure to put the mentioned files (inpout32.h, inpoutx64.dll, inpoutx64.lib) in a place where the script can access them.
Hi! I managed to send triggers from psychopy to activeview. The only problem is that I need the triggers to be 1, 2 and 3 , but I only get the same.
I have this
So I’m doing a stroop task, and every time the participant answers, I need that trigger to be sent to activeview.im using a biosemi EEG seria port to send triggers from psychopy to activeview. What I need to know is how to make sure that the triggers are the ones that I need. For example, In a Stroop task, I have two types of triggers, 1, for condition A and 2 for condition B.
What do I need to add to my script to make sure that responses are connected to the trigger?
Thanks.