pieromigliorato / arduinoscope

Automatically exported from code.google.com/p/arduinoscope
0 stars 0 forks source link

readStringUntil(int) #18

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
First run... I got by the processing code this:

'The function readStringUntil(int) does not exist'

What is the expected output? What do you see instead?
Nothing

What version of the product are you using? On what operating system?
Newest version on Xubuntu 12.04 LTS

Please provide any additional information below.

Original issue reported on code.google.com by dylan.rs...@gmail.com on 10 Nov 2013 at 7:47

GoogleCodeExporter commented 8 years ago
change line 166
String data = p.readStringUntil(LINE_FEED);

to 
String data = new String(p.readBytesUntil(LINE_FEED));

Original comment by tekhertz on 1 Dec 2013 at 8:27