Skip to content

Commit cc70419

Browse files
committed
Updated README
1 parent 917d5e9 commit cc70419

File tree

2 files changed

+15
-14
lines changed

2 files changed

+15
-14
lines changed

README.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -74,20 +74,21 @@ Handles command-line argument parsing and initiates data processing.
7474

7575
## Data Logging
7676

77-
-CSV Output: The script saves the processed data in a CSV file named data_%Y-%m-%d_%H-%M-%S.csv.
77+
- **CSV Output**: The script saves the processed data in a CSV file named `packet_data.csv`.
78+
- The CSV contains the following columns:
79+
- `Counter`: The sample counter from the Arduino.
80+
- `Channel1` to `Channel6`: The data values from each channel.
7881

79-
The CSV contains the following columns:
80-
-Counter: The sample counter from the Arduino.
81-
Channel1 to Channel6: The data values from each channel.
82-
-Log Intervals: The script logs data counts every minute and provides a summary every 10 minutes, including the sampling rate and drift in seconds per hour.
82+
- **Log Intervals**: The script logs data counts every minute and provides a summary every 10 minutes, including the sampling rate and drift in seconds per hour.
8383

84-
### LSL Streaming
84+
## LSL Streaming
85+
86+
- **Stream Name**: `BioAmpDataStream`
87+
- **Stream Type**: `EXG`
88+
- **Channel Count**: `6`
89+
- **Sampling Rate**: `250 Hz`
90+
- **Data Format**: `float32`
8591

86-
Stream Name: BioAmpDataStream
87-
Stream Type: EXG
88-
Channel Count: 6
89-
Sampling Rate: 250 Hz
90-
Data Format: float32
9192
Use an LSL viewer (e.g., BrainVision LSL Viewer) to visualize the streamed data in real-time.
9293

9394
## Troubleshooting
@@ -98,6 +99,7 @@ Use an LSL viewer (e.g., BrainVision LSL Viewer) to visualize the streamed data
9899

99100
## Contributors
100101

101-
We are thankful to our awesome contributors.
102+
We are thankful to our awesome contributors, the list below is alphabetically sorted.
102103

103-
@PayalLakra
104+
- [Payal Lakra](https://github.com/payallakra)
105+

bioamptool.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2727
# SOFTWARE.
2828

29-
3029
from pylsl import StreamInfo, StreamOutlet # Import necessary classes for LSL streaming
3130
import argparse # Import for parsing command-line arguments
3231
import serial # Import for serial communication

0 commit comments

Comments
 (0)