Vertical Sync sensor: Difference between revisions
Wiki-admin (talk | contribs) |
mNo edit summary |
||
| (32 intermediate revisions by 4 users not shown) | |||
| Line 1: | Line 1: | ||
{{Infobox tsg | {{Infobox tsg | ||
| name = | | name = Vertical Sync sensor | ||
| image = | | image = sensorPic.jpg | ||
| caption = | | caption = Vertical Sync sensor | ||
}} | |||
{{Infobox tsg | |||
| name = Seeed Studio XIAO SAMD21 | |||
| image = Seeeduino_XIAO.JPG | |||
| caption = Seeed Studio XIAO SAMD21 | |||
| downloads = {{bulleted list | |||
| [https://wiki.seeedstudio.com/Seeeduino-XIAO/ XIAO SAMD21 product page] | |||
}} | |||
}} | |||
{{Infobox tsg | |||
| name = TEMT6000 Licht Sensor Module | |||
| image = temt6000.jpg | |||
| caption = TEMT6000 Licht Sensor Module | |||
| downloads = {{bulleted list | | downloads = {{bulleted list | ||
| | | {{Surfdrive|https://surfdrive.surf.nl/s/ZC2axMNWjYaTYFG|TEMT6000 Datasheet}} | ||
}} | }} | ||
}} | }} | ||
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 | 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 to the com-port("A" = ON/light, "a" = OFF/noLight) when the amount of light is higher than the (customizable) threshold. This means that the onset of visual stimulus on screen can be marked. It can easily be attached with a pincher to the screen. The Vertical Sync sensor is connected to a computer with a usb connection, a serial port is emulated. You may want to read about [[presentation modes]] in order to decide how to use the sync sensor. | ||
== BITSI Protocol == | == BITSI Protocol == | ||
| Line 26: | Line 38: | ||
|} | |} | ||
Meaning 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=== | ===Output=== | ||
The treshold for OFF is customizable and can be specified by sending a | The treshold for monitor OFF is customizable and can be specified by sending a byte to specify the value for screen OFF. Any byte satisfies, see example code. | ||
== Port Settings == | == Port Settings == | ||
| Line 81: | Line 91: | ||
== Software Settings == | == Software Settings == | ||
=== Python/PsychoPy === | === Python/PsychoPy === | ||
<br/>'''The basics using the Vertical Sync sensor in PsychoPy:''' | |||
''' | |||
<syntaxhighlight lang="python" line> | <syntaxhighlight lang="python" line> | ||
# | # initialize treshold for OFF by sending a code | ||
ser.write(b'1') | |||
visual.Rect(win, .15, .25, pos=(-1, 1),fillColor="white", units="norm").draw() | |||
win.flip() | |||
# wait for a sync square | |||
b = ser.read() | |||
# | |||
</syntaxhighlight> | </syntaxhighlight> | ||
<br/>'''Example using the Vertical Sync sensor in PsychoPy:''' | <br/>'''Example script using the Vertical Sync sensor in PsychoPy:''' | ||
<syntaxhighlight lang="python" line> | <syntaxhighlight lang="python" line> | ||
| Line 148: | Line 113: | ||
# import psychopy and rusocsci | # import psychopy and rusocsci | ||
from psychopy import core, visual | from psychopy import core, visual | ||
import serial | |||
import time | |||
## Setup Section | ## Setup Section | ||
win = visual.Window(monitor="testMonitor") | win = visual.Window([400,400], fullscr=True, winType = "pyglet", monitor="testMonitor",color=(-1, -1, -1), waitBlanking=True) | ||
# connect to Vertical Sync sensor, find correct com port number | |||
ser = serial.Serial('com3', 115200, timeout=1.0) | |||
# create sync box left corner | |||
rect = visual.Rect(win, .15, .25, pos=(-1, 1),fillColor="white", units="norm") | |||
# wait 5 sec for python to become stabel | |||
core.wait(5) | |||
ser.flushInput() | |||
# define screen OFF by sending a code | |||
ser.write(b'1') | |||
## Experiment Section | ## Experiment Section | ||
# show | # show sync box left corner | ||
rect.draw() | |||
win.flip() | win.flip() | ||
# wait for | tik = time.perf_counter() | ||
b = | # wait for a sync square | ||
# show | b = ser.read() | ||
tok = time.perf_counter() | |||
# show delay after a flip | |||
print("your timing after a flip: {}s".format(tok-tik)) | |||
# as a remark 60Hz/~0.016s 120Hz/~0.008s | |||
## Cleanup Section | ## Cleanup Section | ||
core.quit() | core.quit() | ||
</syntaxhighlight> | </syntaxhighlight> | ||
=== Matlab === | === Matlab === | ||
| Line 200: | Line 170: | ||
% reset marker | % reset marker | ||
bb.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. | bb.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. | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Latest revision as of 15:29, 11 August 2026
Vertical Sync sensor |
Seeed Studio XIAO SAMD21 | |
| Downloads | |
|---|---|
TEMT6000 Licht Sensor Module | |
| 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 to the com-port("A" = ON/light, "a" = OFF/noLight) when the amount of light is higher than the (customizable) threshold. This means that the onset of visual stimulus on screen can be marked. It can easily be attached with a pincher to the screen. The Vertical Sync sensor is connected to a computer with a usb connection, a serial port is emulated. You may want to read about presentation modes in order to decide how to use the sync sensor.
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 |
Meaning 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 monitor OFF is customizable and can be specified by sending a byte to specify the value for screen OFF. Any byte satisfies, see example code.
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
Python/PsychoPy
The basics using the Vertical Sync sensor in PsychoPy:
# initialize treshold for OFF by sending a code
ser.write(b'1')
visual.Rect(win, .15, .25, pos=(-1, 1),fillColor="white", units="norm").draw()
win.flip()
# wait for a sync square
b = ser.read()
Example script using the Vertical Sync sensor in PsychoPy:
#!/usr/bin/env python
# import psychopy and rusocsci
from psychopy import core, visual
import serial
import time
## Setup Section
win = visual.Window([400,400], fullscr=True, winType = "pyglet", monitor="testMonitor",color=(-1, -1, -1), waitBlanking=True)
# connect to Vertical Sync sensor, find correct com port number
ser = serial.Serial('com3', 115200, timeout=1.0)
# create sync box left corner
rect = visual.Rect(win, .15, .25, pos=(-1, 1),fillColor="white", units="norm")
# wait 5 sec for python to become stabel
core.wait(5)
ser.flushInput()
# define screen OFF by sending a code
ser.write(b'1')
## Experiment Section
# show sync box left corner
rect.draw()
win.flip()
tik = time.perf_counter()
# wait for a sync square
b = ser.read()
tok = time.perf_counter()
# show delay after a flip
print("your timing after a flip: {}s".format(tok-tik))
# as a remark 60Hz/~0.016s 120Hz/~0.008s
## Cleanup Section
core.quit()
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.
% At the start of your script, create the buttonbox serial object
bb = Bitsi("COM2");
% other code
:
BITSI simple mode:
% This example is for an EEG system sampling at 500Hz samplerate.
% at the start of your script, reset marker
samplerate = 500;
pulseLen = 2000/samplerate;
bb.sendTrigger(0);
% send a marker
val = 1; % val: this is your marker code, range code 1-255
bb.sendTrigger(val);
java.lang.Thread.sleep(pulseLen); % wait long enough for the EEG system to capture the trigger, i.e., 2000/samplerate ms
% reset marker
bb.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.