brainflow
brainflow copied to clipboard
BrainFlow is a library intended to obtain, parse and analyze EEG, EMG, ECG and other kinds of data from biosensors
This is my first-ever contribution to an open source project! Thanks to Andrey for his guidance and for inviting me to contribute these Swift bindings for BrainFlow. And thanks to...
it should be possible to write smth like: ``` board->add_streamer("file://data.csv:w"); board->add_streamer("file://data2.csv:w"); board->add_streamer("streaming_board://225.1.1.1:6677"); ``` Inside board class currently these is `std::map streamers;` need to convert it to smth like `std::map streamers;`...
**Describe the bug** This is the same issue that I asked about in slack a while ago (sorry for the long absence). The connection to the device sometimes works, sometimes...
Resolves https://github.com/brainflow-dev/brainflow/issues/517 for mac. Should be generalized to all platforms. This PR changes the way that the native libraries are built into the java package on mac. It also contains...
It is not ideal that .dylib files are appearing in the project folder on `gradle run`. Can there be an option to use another location? [This doc](https://java-native-access.github.io/jna/4.2.1/com/sun/jna/NativeLibrary.html#library_search_paths) gives some useful...
Ideally bled112 dongle should be integrated into SimpleBLE as a possible backend and then we will be able to unify our implementations for BLE native and dongle APIs
It should be implemented inside SimpleBLE and it requires JNI transition layer, once SimpleBLE supports Android we will need to adopt it in BrainFlow
We currently use libneurosdk(private sdk provided by neuromd) to get data from brainbit and callibri, it works on old macs and on windows. If we replace it by simpleble we...