All Projects → NeuroTechX → Eeg 101

NeuroTechX / Eeg 101

Licence: isc
Interactive neuroscience tutorial app using Muse and React Native to teach EEG and BCI basics.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Eeg 101

EEGEdu
Interactive Brain Playground - Browser based tutorials on EEG with webbluetooth and muse
Stars: ✭ 91 (-54.27%)
Mutual labels:  eeg, plotting
Brainflow
BrainFlow is a library intended to obtain, parse and analyze EEG, EMG, ECG and other kinds of data from biosensors
Stars: ✭ 170 (-14.57%)
Mutual labels:  eeg
Ipyvolume
3d plotting for Python in the Jupyter notebook based on IPython widgets using WebGL
Stars: ✭ 1,696 (+752.26%)
Mutual labels:  plotting
Holoviews
With Holoviews, your data visualizes itself.
Stars: ✭ 2,065 (+937.69%)
Mutual labels:  plotting
Gadfly.jl
Crafty statistical graphics for Julia.
Stars: ✭ 1,724 (+766.33%)
Mutual labels:  plotting
Fooof
Parameterizing neural power spectra into periodic & aperiodic components.
Stars: ✭ 162 (-18.59%)
Mutual labels:  eeg
Tapas
TAPAS - Translational Algorithms for Psychiatry-Advancing Science
Stars: ✭ 121 (-39.2%)
Mutual labels:  eeg
Muse Js
Muse 2016 EEG Headset JavaScript Library (using Web Bluetooth)
Stars: ✭ 193 (-3.02%)
Mutual labels:  eeg
Sensor Data Logger
Android Wear sensor data plotter
Stars: ✭ 166 (-16.58%)
Mutual labels:  plotting
Tidyheatmap
Draw heatmap simply using a tidy data frame
Stars: ✭ 151 (-24.12%)
Mutual labels:  plotting
Cmasher
Scientific colormaps for making accessible, informative and 'cmashing' plots
Stars: ✭ 149 (-25.13%)
Mutual labels:  plotting
Entropy
EntroPy: complexity of time-series in Python (DEPRECATED)
Stars: ✭ 142 (-28.64%)
Mutual labels:  eeg
Scientific Visualization Book
An open access book on scientific visualization using python and matplotlib
Stars: ✭ 6,336 (+3083.92%)
Mutual labels:  plotting
Pyeeg
Python + EEG/MEG = PyEEG
Stars: ✭ 126 (-36.68%)
Mutual labels:  eeg
Eegrunt
A Collection Python EEG (+ ECG) Analysis Utilities for OpenBCI and Muse
Stars: ✭ 171 (-14.07%)
Mutual labels:  eeg
Mne Python
MNE: Magnetoencephalography (MEG) and Electroencephalography (EEG) in Python
Stars: ✭ 1,766 (+787.44%)
Mutual labels:  eeg
Hep
hep is the mono repository holding all of go-hep.org/x/hep packages and tools
Stars: ✭ 146 (-26.63%)
Mutual labels:  plotting
Winston.jl
2D plotting for Julia
Stars: ✭ 153 (-23.12%)
Mutual labels:  plotting
Oxyplot
A cross-platform plotting library for .NET
Stars: ✭ 2,466 (+1139.2%)
Mutual labels:  plotting
Scikit Plot
An intuitive library to add plotting functionality to scikit-learn objects.
Stars: ✭ 2,162 (+986.43%)
Mutual labels:  plotting

banner

An Interactive EEG tutorial that teaches EEG and BCI basics.

Overview

  • Teaches the basics of EEG, including where signals come from, how devices work, and how to process data
  • Contains a general purpose binary classifier for EEG data
  • Streams data from the Muse with the LibMuse Java API
  • Built with React Native for Android
  • Completely free, open-source, and available for use/adaption in any project

Find EEG 101 on the Android Play Store!

Video Walkthrough

https://www.youtube.com/watch?v=fDQZ5zWVjY0&feature=youtu.be

Lesson Content

  • Neurophysiology of EEG
  • EEG hardware
  • Filtering
  • Epoching
  • Artefact Removal
  • The Fourier Transform
  • The Power Spectral Density Curve
  • Brain waves
  • Brain-Computer Interfaces
  • Machine Learning

Currently In Development

  • iOS version
  • UI/UX Tweaks
  • Advanced lesson content, including event-related potentials

How it works

screens

Our goal with EEG 101 was to create a flexible base for EEG and BCI mobile development that novice programmers can build on top of for multiple platforms with different EEG devices. To satisfy those concerns, we've built the app in React Native, which allows for fast, straight-forward front-end development and the potential to port to iOS, Web, or Desktop (Electron) in the future.

Currently, EEG 101 is split right down the middle between Java and React. If you're interested in how we connect to the Muse, process EEG data, and plot the results in real time, check out the graph and signal classes in the android source folders. Our implementations are all (for the most part) typical Android components written in Java.

If you'd like to use EEG 101 as a base for your own app in React Native, take a look at how we've written the tutorial in the src folder. Connecting to a Muse and plotting real-time EEG data is as simple as using one of the Native components we have already prepared.

Setup

  1. Install and setup React Native. Note: EEG 101 uses lots of native code, so create-react-native-app and Expo are not an option. Follow the instructions for "Building Apps with Native Code." You may also need to install the JDK, Node, Watchman, and the Gradle Daemon as well
  2. Install yarn
  3. Clone this repo git clone https://github.com/NeuroTechX/eeg-101.git
  4. Download the LibMuse SDK from Muse's developer website. We've already taken care of integrating the sdk library into the app, so just make sure you end place libmuse_android.so in <clonedRepoName>/EEG101/android/app/src/main/jniLibs/armeabi-v7a/ and libmuse_android.jar in <clonedRepoName/EEG101/android/app/libs/
  5. run yarn install in the EEG101 folder
  6. Connect an Android device with USB debug mode enabled. Because the LibMuse library depends on an ARM architecture, EEG 101 will not build in an emulator
  7. Run react-native start to start React packager
  8. In new terminal, run adb reverse tcp:8081 tcp:8081 to ensure debug server is connected to your device and then react-native run-android to install EEG 101

Common setup problems

  1. Gradle build error: Attribute "title" has already been defined
  • Solution: Make sure build tools is using latest version in in app/build.gradle (ie. 25.0.1) [http://stackoverflow.com/questions/39184283/attribute-title-has-already-been-define-when-have-android-plot-dependencies-1]
  1. INSTALL_FAILED_UPDATE_INCOMPATIBLE: Package com.eeg_project signatures do not match the previously installed version; ignoring!
  • Solution: Uninstall any pre-existing versions of the app on your device
  1. Could not connect to development server
  • Solution: Make sure that the device is connected, run adb reverse tcp:8081 tcp:8081, and restart the React packager (react-native-start)
  1. Could not get BatchedBridge
  • Solution: Run adb reverse tcp:8081 tcp:8081 again and reload
  1. Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Borderless.Colored'
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].