User Tools

Site Tools


kpnl:biopac:dio

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
kpnl:biopac:dio [2015/02/15 13:13] adminkpnl:biopac:dio [2015/05/16 10:20] (current) – [Acquiring Digital Codes] admin
Line 1: Line 1:
 ====== Acquiring Digital Codes ====== ====== Acquiring Digital Codes ======
  
-It is critical that we acquiring stimulus-locked digital codes so that we can bin the data according to stimulus type during analysis. This is also essential for creating event-related averages of the psychophysiological data (e.g. creating ERPs from EEG data) as it gives us the precise onset time of each stimulus. Below is a description of the hardware, software, and steps necessary for sending and acquiring such codes using the Biopac MP150.+It is critical that we acquire time-locked digital codes upon presentation of each stimulus. These codes are used to bin the data according to stimulus type during analysis. This is also essential for creating event-related averages of the psychophysiological data (e.g. creating ERPs from EEG data) as it gives us the precise onset time of each stimulus. Below is a description of the hardware, software, and steps necessary for sending and acquiring such codes using the Biopac MP150.
  
 ===== Hardware ===== ===== Hardware =====
Line 8: Line 8:
   * [[http://www.winfordeng.com/products/brk25mf.php|Winford DB25 Dual Connector Breakout Board]]   * [[http://www.winfordeng.com/products/brk25mf.php|Winford DB25 Dual Connector Breakout Board]]
     * This breakout board (aka terminal board or terminal block) gives us an easy way of wiring the output from the LabJack U3 to the ribbon cable.      * This breakout board (aka terminal board or terminal block) gives us an easy way of wiring the output from the LabJack U3 to the ribbon cable. 
 +  * [[http://www.biopac.com/isolated-digital-interface-printer-port|Biopac I/O]]
  
 <WRAP center round box 80%> <WRAP center round box 80%>
Line 17: Line 18:
     - FIO0-FIO7 should be wired to terminals 2-9 of the breakout board.     - FIO0-FIO7 should be wired to terminals 2-9 of the breakout board.
     - The ground should be wired to terminal 18 of the breakout board.     - The ground should be wired to terminal 18 of the breakout board.
 +  - A 25-pin ribbon cable connects the breakout board to the MP150
 </WRAP> </WRAP>
 +===== Software =====
  
 +==== Sending ====
 +The LabJack U3 can be controlled via several different programs and languages. We use the [[http://labjack.com/support/labjackpython|LabJack Python module]] to send codes via [[http://www.psychopy.org/|PsychoPy]].
 +
 +The computer (Mac) should have [[https://developer.apple.com/xcode/|Xcode]] (including the **Command Line Tools**) installed. The libusb package should also be installed (see [[http://labjack.com/support/linux-and-mac-os-x-drivers|here]] for details). Finally, the [[http://labjack.com/support/linux-and-mac-os-x-drivers|LabJack exodriver]] and [[http://labjack.com/support/labjackpython|LabJack Python module]] should be installed.
 +
 +Below is sample code for sending digital codes.  Additional details can be found [[http://labjack.com/support/labjackpython/low-level|here]] and [[http://labjack.com/support/u3/users-guide/5.2.5.10|here]].
 +
 +<code python>
 +# import LabJack module
 +import u3
 +#NOTE: if running from PsychoPy you should use "from labjack import u3"
 +
 +# Initialize some stuff
 +d = u3.U3()
 +d.getCalibrationData
 +d.debug = True
 +
 +# Set all FIO bits to digital output and set to low (i.e. “0")
 +# The list in square brackets represent what’s desired for the FIO, EIO, CIO ports. We will only change the FIO port's state.
 +d.getFeedback(u3.PortStateWrite(State = [0, 0, 0]))
 +
 +# To send a code, replace the first number in the list with a value between 0-255
 +# For instance, the following code would send a value of 15 by setting the first 4 bits to “1"
 +d.getFeedback(u3.PortStateWrite(State = [15, 0, 0]))
 +</code>
 +
 +==== Acquiring ====
 +**1.** In the AcqKnowledge acquisition software, select **MP150** => **Set Up Channels**.
 +
 +**2.** Select **Digital**.
 +
 +**3.** Check the **Acquire** box next to channels 8-15. The **Plot** and **Value** boxes can remain unchecked.
 +
 +<WRAP center round info 60%>
 +  * Pins 2-9 on the DB25 map to digital inputs 8-15 on the MP150
 +</WRAP>
 +
 +The MP150 does not read the 8-bit code. Rather, it is simply acquiring 8 separate channels of digital input. We need to create an additional channel that will take the result of an expression (that we define) as input. The expression will convert the 8 binary channels to a single decimal stimulus code.
 +
 +**4.** Select **Calculation**.
 +
 +**5.** Check the boxes for **Acquire**, **Plot**, and **Value**.
 +
 +**6.** From the “preset” dropdown menu select **''Expression''**.
 +
 +**7.** Select **Setup**
 +
 +**8.** Enter the following formula: ''(D8*1 + D9*2 + D10*4 +D11*8 + D12*16 + D13*32 + D14*64 + D15*128) / 5''
 +\\
 +(note: we divide by 5 because the input is read as 5 volts. So a digital code of ''255'' would be summed to 1275.)
kpnl/biopac/dio.1424024014.txt.gz · Last modified: 2015/02/15 13:13 by admin

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki