Holcombe:ButtonBox: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
No edit summary
No edit summary
Line 18: Line 18:


To reset the button-box internal clock to 0:
To reset the button-box internal clock to 0:
 
s.write('e5')
s.write('e5')


Critically, the box records both the press and release of the button and sends a signal in exactly the same way (at least how it's set  up now). To avoid this, you need to record both separately. In the attached file that shows how we tested the precision of the box relative to the computer clock, you can see how I did this. But basically, to check if a key has been pressed or released, you check this:  
Critically, the box records both the press and release of the button and sends a signal in exactly the same way (at least how it's set  up now). To avoid this, you need to record both separately. In the attached file that shows how we tested the precision of the box relative to the computer clock, you can see how I did this. But basically, to check if a key has been pressed or released, you check this:  
if s.inWaiting() > 0:  ......
if s.inWaiting() > 0:  ......


To get out the data about the button press or release:  
To get out the data about the button press or release:  
 
response=s.read(6)
response=s.read(6)
formatted_response=unpack('<cBI>', response)
 
time_in_msec = formatted_response[2]
formatted_response=unpack('<cBI>', response)
 
time_in_msec = formatted_response[2]


== Precision ==
== Precision ==
A file summarizing our tests of the precision of the timing is attached to this page. Here is a link to it: [[media:buttonBoxPrecisionSummary.doc]]
A file summarizing our tests of the precision of the timing is attached to this page. Here is a link to it: [[media:buttonBoxPrecisionSummary.doc]]

Revision as of 16:05, 24 April 2008

Recent members

Alex Holcombe
• Ryo Nakayama



Technical

Skills Checklist
Python Programming
Psychopy/VisionEgg Installation Notes
R analysis,plot,stats
Statistics
Buttonbox
Buttonbox with photocell
Programming Cheat Sheets



The box

The button-box we have used for our "sensorimotor synchronisation" experiments is a Cedrus RB-730 response pad. It is on loan from Nenad and the IT office. It connects to the computer via a USB port, and is controlled by the computer as a serial port (or something like that). [1]. To work, you must install a driver from the Cedrus website here:[2], and surprisingly, I also had to install a USB to serial port driver from a company called Keyspan: [3]. I used the driver for their USA-28x product.

I had all of the little dip switches in back in the down position.

Programming with the box

To use the button-box with a python program, you need these lines at the start of your code:

from psychopy import serial
from struct import unpack

And to initialize the box:

s = serial.Serial('/dev/tty.usbserial-FT3ERKOD', 115200)

To erase all info in the box about previous button-presses:

s.flushInput()

To reset the button-box internal clock to 0:

s.write('e5')

Critically, the box records both the press and release of the button and sends a signal in exactly the same way (at least how it's set up now). To avoid this, you need to record both separately. In the attached file that shows how we tested the precision of the box relative to the computer clock, you can see how I did this. But basically, to check if a key has been pressed or released, you check this:

if s.inWaiting() > 0:   ......

To get out the data about the button press or release:

response=s.read(6)
formatted_response=unpack('<cBI>', response)
time_in_msec = formatted_response[2]

Precision

A file summarizing our tests of the precision of the timing is attached to this page. Here is a link to it: media:buttonBoxPrecisionSummary.doc