Skip to content

Commit ecc1568

Browse files
authored
Merge pull request #23 from Helment/change_paths_and_board_versions
Change paths and board versions
2 parents f92712a + 2f88b78 commit ecc1568

23 files changed

Lines changed: 66 additions & 21 deletions

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ backend/__pycache__/*.pyc
22
__pycache__/*.pyc
33
frontend/__pycache__/*.pyc
44
settings.cfg
5-
neurigui/backend/__pycache__/*.pyc
6-
neurigui/frontend/__pycache__/*.pyc
7-
neurigui/__pycache__/*.pyc
5+
neuri/backend/__pycache__/*.pyc
6+
neuri/frontend/__pycache__/*.pyc
7+
neuri/__pycache__/*.pyc

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2023 Helment (Brain Machine Wellness Solutions SpA)
1+
Copyright 2023 David Marcel BAUM
22

33
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
44

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ Neuri is an EEG board developed by Helment. This GUI is working with Neuri versi
55
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.
66
3. Store the data in an open text format for offline analysis (default: "Helment_[datetime].txt")
77

8-
![Main view of GUI](./neurigui/assets/Neuri_GUI_main_window.png)
8+
![Main view of GUI](./neuri/assets/Neuri_GUI_main_window.png)
9+
10+
Watch the introdction on Youtube:
11+
12+
[![Watch the introdcution](https://img.youtube.com/vi/8DbGR9KUszQ/hqdefault.jpg)](https://www.youtube.com/embed/8DbGR9KUszQ)
913

1014
## Setup
1115

@@ -29,8 +33,8 @@ Other Linux specific steps are:
2933
### Compilation
3034

3135
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**:
32-
- Windows: `nuitka ./neuri_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`
33-
- GNU/Linux: `nuitka3 ./neuri_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)
36+
- Windows: `nuitka ./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`
37+
- 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)
3438

3539
### Packaging
3640

@@ -40,10 +44,10 @@ The GUI is packageable into a **Python module**. For this, run inside the root f
4044

4145
### Installing and running
4246

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".
4448
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:
4549
```
46-
import neurigui.neuri_gui as ng
50+
import neuri.gui as ng
4751
ng.Run()
4852
```
4953

dist/neurigui-2.80.2.tar.gz

-669 KB
Binary file not shown.

dist/neurigui-2.81.0.tar.gz

669 KB
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)