| Line 22: |
Line 22: |
| | | | |
| | == Psychopy Settings == | | == Psychopy Settings == |
| | + | |
| | + | <code> |
| | + | #!/usr/bin/env python |
| | + | from psychopy import core, visual, event |
| | + | from rusocsci import buttonbox |
| | + | import logging, time |
| | + | |
| | + | ## Setup Section |
| | + | #logging.getLogger().setLevel(logging.DEBUG) # use this for debug info |
| | + | win = visual.Window([400,300], monitor="testMonitor") |
| | + | bb = buttonbox.Buttonbox() |
| | + | |
| | + | ## Experiment Section |
| | + | b = bb.waitButtons(maxWait = 10.0, buttonList=['A']) |
| | + | print("b: {}".format(b)) |
| | + | |
| | + | ## Cleanup Section |
| | + | core.quit() |
| | + | </code> |
| | | | |
| | == Matlab Settings == | | == Matlab Settings == |