You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,11 @@ Neuri is an EEG board developed by Helment. This GUI is working with Neuri versi
5
5
2. Forward the signal (raw) in to a serial port located at 127.0.0.1:XYZ. This allows you to connect any of your applications to the GUI and to work with the acquired signal in real-time.
6
6
3. Store the data in an open text format for offline analysis (default: "Helment_[datetime].txt")
7
7
8
-

8
+

9
+
10
+
Watch the introdction on Youtube:
11
+
12
+
[](https://www.youtube.com/embed/8DbGR9KUszQ)
9
13
10
14
## Setup
11
15
@@ -29,8 +33,8 @@ Other Linux specific steps are:
29
33
### Compilation
30
34
31
35
The compiled version the the Neuri GUI runs way faster and has more stable execution speed of iteration loops inside the backend of the GUI. You can **compile the GUI with Nuitka**:
- GNU/Linux: `nuitka3 ./gui.py --onefile --enable-plugin=tk-inter --standalone --enable-plugin=pyqt5 --include-data-dir=./frontend/=data --windows-icon-from-ico=frontend/Isotipo-Helment-color.ico --windows-disable-console` (note the 3 in nuitka3 compared to Windows)
34
38
35
39
### Packaging
36
40
@@ -40,10 +44,10 @@ The GUI is packageable into a **Python module**. For this, run inside the root f
40
44
41
45
### Installing and running
42
46
43
-
The GUI can be run directly from an IDE by calling the `Run()` function found in "./neurigui/neuri_gui.py".
47
+
The GUI can be run directly from an IDE by calling the `Run()` function found in "./neuri/gui.py".
44
48
You can also **install it as a Python module** pointing pip to the root folder of the project (NeuriGUI): `pip install ./path/to/NeuriGUI`. This will install the module found in "NeuriGUI/dist". You can then run the GUI from your own scripts such as:
0 commit comments