--
You received this message because you are subscribed to the Google Groups "psychopy-users" group.
To post to this group, send email to psychop...@googlegroups.com.
To unsubscribe from this group, send email to psychopy-user...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/psychopy-users?hl=en.
-- Dr. Jonathan Peirce Nottingham Visual Neuroscience http://www.peirce.org.uk/
Just download the dll, put it in system32 folder. Then from python:
from ctypes import windll
p = windll.inpout32
p.Inp32(0x378) #default 255(all high) on my pc
p.Out32(0x378, 0) #put all low on port 2-9
The address 0x378 might be different on your machine, open
System->Hardware->Device Manager->Ports->ECP Printer
Port->Properties->Resources, use the first number as your address.
Best
Andre'