Processing V3 / splitLineCSV() error
Hi Folks
I'd like to use Processing V3 as it has the Debug capabilities.
However it does not like the OpenBCI_GUI. Do you know when a version that will vork with Processing V3 will come out?
Many thanks
Dave
I'd like to use Processing V3 as it has the Debug capabilities.
However it does not like the OpenBCI_GUI. Do you know when a version that will vork with Processing V3 will come out?
Many thanks
Dave

Comments
I am getting errors regarding this line in Datafile.pde
142 setColumnTitles(tsv ? PApplet.split(line, '\t') : splitLineCSV(line));
146 setRow(row, tsv ? PApplet.split(line, '\t') : splitLineCSV(line));
It does not like splitlineCSV with only one argument. I am using all of the latest libraries as well.
Many thanks
Dave
https://github.com/processing/processing/blob/master/core/src/processing/data/Table.java
It apparently wants a BufferedReader object as the 2nd arg.
That would be 'reader' in the source,
https://github.com/OpenBCI/OpenBCI_Processing/blob/master/OpenBCI_GUI/dataFiles.pde
As Processing V3 has debugging I want to use that feature to really understand the application, and hopefully beable to preset a lot of the values sent to the OpenBCI board. As I do EMG I have to set all of the Gains back to 2 or 4 etc.
Also in future it will enable me to do some preprocessing on the OpenBCI (I have the 8 bit version) to better suit my needs.
Many thanks
Dave
Again many thanks
Dave
I did some work on the weekend with a friend testing EMG pickup on the face. It work reasonably well with single electrodes. My next step is to try twin electrodes.
Many thanks to you and Connor for all of your help.
Dave