-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
256 additions
and
429 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# These packages will be checked by the updater extension for updates on | ||
# conda and pip | ||
packages = ['opensesame-plugin-parallel_port_trigger'] |
32 changes: 32 additions & 0 deletions
32
opensesame_plugins/parallel_port_trigger/parallel_port_trigger_init/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
"""Parallel Port Trigger - initializes the parallel port device""" | ||
|
||
# The category determines the group for the plugin in the item toolbar | ||
category = "Parallel Port Trigger" | ||
# Defines the GUI controls | ||
controls = [ | ||
{ | ||
"type": "checkbox", | ||
"var": "dummy_mode", | ||
"label": "Dummy mode", | ||
"name": "checkbox_dummy", | ||
"tooltip": "Run in dummy mode" | ||
}, { | ||
"type": "checkbox", | ||
"var": "verbose", | ||
"label": "Verbose mode", | ||
"name": "checkbox_verbose", | ||
"tooltip": "Run in verbose mode" | ||
}, { | ||
"type": "line_edit", | ||
"var": "port", | ||
"label": "Port Address", | ||
"name": "line_edit_port", | ||
"tooltip": "Address of the parallel port, value is a hexadecimal number (Windows) or path (Linux)" | ||
}, { | ||
"type": "text", | ||
"label": "<small><b>Note:</b> Parallel Port Trigger Init item at the begin of the experiment is needed for initialization of the parallel port</small>" | ||
}, { | ||
"type": "text", | ||
"label": "<small>Parallel Port Trigger version 4.0.0</small>" | ||
} | ||
] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
32 changes: 32 additions & 0 deletions
32
opensesame_plugins/parallel_port_trigger/parallel_port_trigger_send/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
"""Parallel Port Trigger - send trigger""" | ||
|
||
# The category determines the group for the plugin in the item toolbar | ||
category = "Parallel Port Trigger" | ||
# Defines the GUI controls | ||
controls = [ | ||
{ | ||
"type": "line_edit", | ||
"var": "value", | ||
"label": "Value", | ||
"name": "line_edit_port", | ||
"tooltip": "Value to set port" | ||
}, { | ||
"type": "checkbox", | ||
"var": "duration_check", | ||
"label": "Enable duration", | ||
"name": "checkbox_duration_check", | ||
"tooltip": "When enabled, a pulse is created instead of a state change" | ||
}, { | ||
"type": "line_edit", | ||
"var": "duration", | ||
"label": "Duration (ms)", | ||
"name": "line_edit_duration", | ||
"tooltip": "Value in ms" | ||
}, { | ||
"type": "text", | ||
"label": "<small><b>Note:</b> Parallel Port Trigger Init item at the begin of the experiment is needed for initialization of the parallel port</small>" | ||
}, { | ||
"type": "text", | ||
"label": "<small>Parallel Port Trigger version 4.0.0</small>" | ||
} | ||
] |
File renamed without changes.
File renamed without changes
Oops, something went wrong.