@@ -105,11 +105,29 @@ To use the script, run it from the command line with various options:
105
105
- ` python keystroke.py` : On running, a pop-up opens for connecting, and on pressing Start, blinks are detected to simulate spacebar key presses.
106
106
107
107
# # Running All Applications
108
+ Here' s the updated section for the README:
109
+
110
+ ---
111
+
112
+ ### Running All Applications Together
113
+
108
114
To run all applications together:
109
115
110
- ` ` ` bash
111
- python app.py
112
- ` ` `
116
+ ```bash
117
+ python app.py
118
+ ```
119
+
120
+ > [!NOTE]
121
+ > Before running, make sure to activate the virtual environment and install all dependencies:
122
+
123
+ 1. Activate the virtual environment:
124
+ ```bash
125
+ .\venv\Scripts\activate
126
+ ```
127
+ 2. Install dependencies:
128
+ ```bash
129
+ pip install -r chords_requirements.txt
130
+ ```
113
131
114
132
This will launch a Web interface. Use the interface to control the applications:
115
133
@@ -122,11 +140,10 @@ This will launch a Web interface. Use the interface to control the applications:
122
140
- `eog`: Process and detect blinks in EOG signals.
123
141
- `emgenvelope`: Analyze EMG signals for muscle activity or gesture recognition.
124
142
- `keystroke`: Monitor and analyze keystroke dynamics.
125
- - ` game` : Launch an EEG game fro 2 players(Tug of War).
143
+ - `game`: Launch an EEG game for 2 players(Tug of War).
126
144
- `csv_plotter`: Plot data from a CSV file.
127
145
- `gui`: Launch the GUI for real time signal visualization.
128
146
129
-
130
147
## Troubleshooting
131
148
132
149
- **Arduino Not Detected:** Ensure the Arduino is properly connected and powered. Check the serial port and baud rate settings.
0 commit comments