Michael
November 27, 2018, 9:29pm
2
Look through some similar posts on this forum. In essence, I think you also need to install a parallel port driver (the source of the the inpout32
referred to in your error message), separate to PsychoPy itself.
Hello,
There is also a 64-bit version of the driver. I haven’t used a parallel port in years but I remember having to install inpoutx64.dll to make work.
Hello,
I try to send my trigger codes via a parallel port to our recording system. Unfortunately, PsychoPy is not satisfied with the installed drivers. To test the the signal transfer I started the “Parallel Ports Demo” provided by Psychopy. Here is the code:
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
"""
parallel ports demo
This is for win32 only.
"""
from __future__ import division
from psychopy import visual, core
from psychopy import parallel
nFramesOn = 5
nFramesOff = 30
nCycles =…