Hello
I have this weirdness with the library
When used this way....
while(bluetooth.available()<1) {} // wait for input
i = bluetooth.parseInt(); // get int
bluetooth.print(i); // send out int
delay(100); // wait before continuing
it doesn't wait for input i doesn't get a value and falls through everything else
but if I leave out < bluetooth.print(i); >
it waits for input and i gets a value everything works after
any ideas on why this is so?
I'm using an Arduino nano for this