
psychopy - How to send data through parallel port in Python? - Stack ...
Jun 24, 2016 · from psychopy import prallel port = parallel.ParallelPort(address="0xEC00") port.readData() > 0 I see that although I can set the pins correctly on Machine 1 and read the result, …
Unable to install PsychoPy module in Python - Stack Overflow
Jul 1, 2022 · Unable to install PsychoPy module in Python Asked 3 years, 6 months ago Modified 3 years, 5 months ago Viewed 709 times
python - Exiting PsychoPy Window - Stack Overflow
from psychopy import visual w = visual.Window() Putting core.quit() somewhere in the code will have the same effect as the script ending at the end (i.e., the window will close down fine). If you have a …
Psychopy: how to avoid to store variables in the csv file?
PsychoPy spits out all the variables it thinks you could need. If you want to drop some of them, that is a task for the analysis stage, and is easily done in any processing pipeline. Unless you are analysing …
psychopy - How to display stimulus accurately using frames - Stack …
May 31, 2016 · I have a bit of code attached below that display a stimulus for a certain number of frames. from psychopy import visual, logging, event, core #create a window to draw in myWin = …
eye tracking - Psychopy and pylink example - Stack Overflow
Feb 1, 2016 · 8 rather than PyLink, you might want to look into using the ioHub system within PsychoPy. This is a more general-purpose eye tracking system that also allows for saving data in a common …
python - Alternatives to Psychopy - Stack Overflow
OpenSesame is Python (and often PsychoPy) based under the hood. Paradigm seems to have a nice interface but to add more sophisticated functionality, also uses Python scripting (although seems to …
Getting keyboard response in Psychopy - Stack Overflow
Please note that the community forum at https://discourse.psychopy.org is probably a better place to get support like this. StackOverflow is more oriented towards code-based questions and answers that …
psychopy - Python; add blank screen after words in a split sentence ...
May 24, 2016 · 0 I'm building a Psychopy experiment that presents sentences one word at a time and then presents a separate word that collects a response. My input for the first part is a whole sentence …
Psychopy: Creating multiple line objects simultaneously
Jun 24, 2017 · I'm then creating 4 Psychopy line objects (visual.Line) and assigning each object an x,y coordinate from my coordinates list (zdot_list). Currently, I'm creating 4 lines objects one after the …