I'm not a programmer. I am doing a project for Biology where I will be conducting an experiment on reaction times. Briefly, the subject should click anywhere on the screen as soon as a dot or circle (some graphic) appears on the screen.
Details:
Afterward, I will just tabulate the data on a spreadsheet and calculate the time differences between the time the graphic appears and the time the subject presses the mouse.
I have very limited knowledge of Python. I've never done anything with graphics on Python. This is the best set up I can think of for my needs.
I did some research and this is what I've found so far:
Please also not that the program may be run on a windows 7 PC or a MacBook.
I don't need a complete answer. Just some suggestions and tips to point me in the right direction for further research. Thanks.
You can use Pygame
for graphics (drawing a dot on screen etc).
You can use datetime to capture the start time:
from datetime import datetime
Time = datetime.now()
print(Time)
Pyhook
will capture mouse movements.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With