Vertical Sync sensor

From TSG Doc
Jump to navigation Jump to search
Buttonbox (2018)
Buttonbox 2018 1.png
2018 Buttonbox
Downloads

The Vertical Sync sensor is used on a computer/laptop monitor for time accurate visual presentation. The sensor measures screen brightness. It generates a BITSI trigger("A" = ON/light, "a" = OFF/noLight) when the amount of light is higher than the (customizable) threshold, which means that the exact onset of any visual stimulus can be marked. It can easily be attached to any screen with a pincher. The Vertical Sync sensor is connected to a computer with a usb connection.

BITSI Protocol

BITSI stands for Bits to Serial Interface.

Vertical Sync sensor
ASCII (rise/fall) Code (rise/fall) Light
A / a 65 / 97 ON / OFF

This means that when light falls on the sensor, a capital A will be sent to the serial port. A lowercase 'a' will be sent when the signal is deactivated(no light).

Output

The treshold for OFF is customizable and can be specified by sending a code Send code to specify the value for screen OFF.

EDIT howto

Port Settings

Serial port

Our hardware design allows to be connected to the computers USB and emulates a serial communication Port.

Baudrate 115200
Parity None
Data bits 8
Stop bits 1
Flow control None

USB-Com port

1.Connect the Vertical Sync sensor to your computer using the USB cable.

2.When you connect the Vertical Sync sensor, Windows should initiate the driver installation process (if you haven't used the computer with an Vertical Sync sensor before).

How to Check the Com Port settings(important!)

  • From the Start menu, open the Control Panel.
  • From the control panel, open the System window.
  • From the system properties window, go to the Hardware tab and click the Device Manager button.
  • From the Device Manager window, click Ports (Com&LPT). You should now be able to see which Com Port the USB adapter is assigned to.
  • If the Com Port is 10 or higher, you will have to change it to a lower port.
  • From the Device Manager window, click on USB Serial Port (Com#). Click the Port Settings tab of the USB Serial Port Properties window, and then click the Advanced button.
  • In the Advanced Settings window, use the scroll input to select a Com Port (select 10 or lower). Change Receive (bytes) and Transmit (bytes) to 64. Change the Latency Timer to 1.
  • Click the OK button.

Always connect the usb device to the same port and your settings will be remembered.

Software Settings

Neurobs Presentation

The experiment files needs a few settings for the device to work:

  • In the settings tab: port -> input port -> 1 must be the device that identifies itself as "Arduino Uno" in the device manager. Note that the port must have a number not higher than 10 (COM1-COM10). Use re-enumerate if it is higher.
  • Rate must be set 115200, Parity to None, Data Bits to 8 and Stop Bits to 1, Uncheck FIFO Interrupt.

Buttonbox2.png

Testing Buttonbox

When pressing on the A button within the input channel tester. You will see the following ASCII code.

Testbuttonbox.png

Adding Marker

Output buttonbox1.png

Testing Markers (output)

Send code 1 for Button A

Output buttonbox2.png

Button A will light up.

ButtonboxledA.png

Send code 0 for clearing.

Output buttonbox3.png

Example PCL code you can program a handle to send a marker:

#handle:
output_port OutputPort = output_port_manager.get_port( 1 );

Example to send a marker:

OutputPort.send_code(100); #create a marker


for more information see chapter 8 in the presentation course by clicking here

Python/PsychoPy

Download this site-package to use the buttonbox: rusocsci

or use in windows command 'pip install --upgrade rusocsci'

Example using buttons from the buttonbox in Python:

 1#!/usr/bin/env python
 2
 3# import the rusocsci.buttonbox module
 4from rusocsci import buttonbox 
 5
 6# make a buttonbox
 7bb = buttonbox.Buttonbox()
 8
 9# wait for a single button press
10b = bb.waitButtons()
11
12# print the button pressed
13print("b: {}".format(b))

Example using markers with the buttonbox in Python:

 1#!/usr/bin/env python
 2
 3# import the rusocsci.buttonbox module
 4from rusocsci import buttonbox 
 5
 6# make a buttonbox
 7bb = buttonbox.Buttonbox()
 8
 9# send a marker
10bb.sendMarker(val=100)    #This is your marker code, range code 1-255

Example using BITSI extended in Python:

 1#!/usr/bin/env python
 2
 3# import the rusocsci.buttonbox module
 4from rusocsci import buttonbox 
 5
 6# make a buttonbox
 7bb = buttonbox.Buttonbox()
 8
 9# select a function
10bb.sendMarker(val=(ord(X)))    #select pulse time
11bb.sendMarker(val=2)           #set time of dureation pulse to 2ms
12
13bb.sendMarker(val=(ord(M)))    #select marker out
14bb.sendMarker(val=115)           #set marker value 115

Example using BITSI extended analog read in Python:

 1#!/usr/bin/env python
 2
 3# import the rusocsci.buttonbox module
 4import serial
 5
 6# make a buttonbox
 7ser = serial.Serial("COM2", 115200, timeout = 0.10 )
 8ser = serial.Serial("/dev/ttyUSB0", 115200, timeout = 0.10 )
 9
10while True:
11	ser.write('A1')
12	ser.flush()
13	x = ser.readline()
14	visual.TextStim(win, text=x).draw()
15
16	# black screen for 1000 ms
17	win.flip()
18
19	key = event.getKeys()
20	try:
21		if key[0]=='escape':
22			break
23	except:
24		continue


Example using the Buttonbox in PsychoPy:

 1#!/usr/bin/env python
 2
 3# import psychopy and rusocsci
 4from psychopy import core, visual 
 5from rusocsci import buttonbox
 6
 7## Setup Section
 8win = visual.Window(monitor="testMonitor")
 9bb = buttonbox.Buttonbox()
10text = visual.TextStim(win, "Press a button on the buttonbox")
11
12## Experiment Section
13# show text
14text.draw()
15win.flip()
16# wait for response
17b = bb.waitButtons()
18# show response
19text.setText("you pressed: {}".format(b))
20text.draw()
21win.flip()
22core.wait(5)
23
24## Cleanup Section
25core.quit()

For more documentation click here: http://pythonhosted.org//RuSocSci/index.html

Matlab

Example using markers with the Buttonbox in Matlab:

Download the file Bitsi.m from the DCCN website: https://intranet.donders.ru.nl/index.php?id=bitsim0
Make sure to have this file in your Matlab path.

1% At the start of your script, create the buttonbox serial object
2bb = Bitsi("COM2");
3% other code
4        :

BITSI simple mode:

 1% This example is for an EEG system sampling at 500Hz samplerate.  
 2% at the start of your script, reset marker
 3samplerate = 500;
 4pulseLen = 2000/samplerate;
 5bb.sendTrigger(0);
 6% send a marker
 7val = 1;                                     % val: this is your marker code, range code 1-255
 8bb.sendTrigger(val);
 9java.lang.Thread.sleep(pulseLen);    % wait long enough for the EEG system to capture the trigger, i.e., 2000/samplerate ms
10% reset marker
11bb.sendTrigger(0)                 % Note: if resetting the marker is not possible at this moment in code, you can decide to do this later as long as it has taken place long enough before the next marker has to be sent.

BITSI extended mode:

1samplerate = 500;
2pulseLen = 2000/samplerate;
3% select a function
4bb.sendTrigger(uint8('X'));   % select pulse time
5bb.sendTrigger(pulseLen);             % set time of duration pulse to (2000/samplerate) ms
6 
7val = 1;                                     % val: this is your marker code, range code 1-255
8bb.sendTrigger(uint8('M'));  % select marker out
9bb.sendTrigger(val);              % val: this is your marker code, range code 1-255
1% At the end of your script, close the buttonbox serial object
2    :
3bb.close();