[specs] add docs

This commit is contained in:
Jan Grewe 2021-03-17 11:47:09 +01:00
parent babdf94b74
commit 5fedc95e09
5 changed files with 33 additions and 7 deletions

View File

@ -11,8 +11,14 @@ a = Analysis(['blipblop_main.py'],
('docs/auditory_task.md', "docs"),
('docs/license.md', "docs"),
('docs/tasks.md', "docs"),
('docs/results.md', "docs"),
('docs/images/blipblop_main.png', "docs/images"),
('docs/images/blipblop_logo.png', "docs/images"),
('docs/images/auditory_settings.png', "docs/images"),
('docs/images/visual_settings.png', "docs/images"),
('docs/images/auditory_task_screen.png', "docs/images"),
('docs/images/visual_task_screen.png', "docs/images"),
('docs/images/results_table.png', "docs/images"),
('sounds/bell.wav', "sounds"),
('sounds/complete.wav', "sounds"),
('sounds/message.wav', "sounds"),
@ -32,17 +38,21 @@ pyz = PYZ(a.pure, a.zipped_data,
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='BlipBlop',
debug=True,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True,
icon='icons/blipblop_logo.icns'
)
coll = COLLECT(exe,
a.binaries,
a.zipfiles,
a.datas,
strip=False,
upx=True,
upx_exclude=[],
name='BlipBlop')

View File

@ -10,13 +10,19 @@ a = Analysis(['blipblop_main.py'],
('docs/visual_task.md', "docs"),
('docs/auditory_task.md', "docs"),
('docs/license.md', "docs"),
('docs/results.md', "docs"),
('docs/tasks.md', "docs"),
('docs/results.md', "docs"),
('docs/images/blipblop_main.png', "docs/images"),
('docs/images/blipblop_logo.png', "docs/images"),
('docs/images/auditory_settings.png', "docs/images"),
('docs/images/visual_settings.png', "docs/images"),
('docs/images/auditory_task_screen.png', "docs/images"),
('docs/images/visual_task_screen.png', "docs/images"),
('docs/images/results_table.png', "docs/images"),
('sounds/bell.wav', "sounds"),
('sounds/complete.wav', "sounds"),
('sounds/message.wav', "sounds"),
('icons/blipblop_logo.png', "."),
],
hiddenimports=[],
hookspath=[],

View File

@ -11,11 +11,18 @@ a = Analysis(['blipblop_main.py'],
('docs/auditory_task.md', "docs"),
('docs/license.md', "docs"),
('docs/tasks.md', "docs"),
('docs/results.md', "docs"),
('docs/images/blipblop_main.png', "docs/images"),
('docs/images/blipblop_logo.png', "docs/images"),
('docs/images/auditory_settings.png', "docs/images"),
('docs/images/visual_settings.png', "docs/images"),
('docs/images/auditory_task_screen.png', "docs/images"),
('docs/images/visual_task_screen.png', "docs/images"),
('docs/images/results_table.png', "docs/images"),
('sounds/bell.wav', "sounds"),
('sounds/complete.wav', "sounds"),
('sounds/message.wav', "sounds"),
('icons/blipblop_logo.ico', "."),
],
hiddenimports=[],
hookspath=[],

View File

@ -20,4 +20,4 @@ The *stimulus saliency* slider controls the loudness of the sound. Of course thi
All changes will be stored and are persisted even after the program is closed.
[back](index.md)
[back](index.md)

View File

@ -3,6 +3,9 @@
![results](images/results_table.png)
A simple tablular view that shows the measured reaction times. Each column is one experiment. Hovering with the mouse over the table header shows a little more information about the task. The icon depicts whether it was a visual or auditory task.
The data is given in seconds. **Invalid** trials (spacebar was pressed before the stimulus actually appeared) are noted with a reaction time of **-1000**
Select the data with the mouse and press (**ctrl+c** or **cmd+c**) to copy the selection to clipboard and paste it into your favorite spreadsheet tool for further analysis.
[back](index.md)