You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, it works sending data to the Arduino but when i want to show the data from the Arduino on a (textView for example) just doesn't show anything. I would appreciate your help :)
The text was updated successfully, but these errors were encountered:
First, on Arduino use Serial.println instead of Serial.print. Also you should read a whole line before sending it. Right now you send every character separately, and when you receive the character on Android you overwrite the TextView content with it. Log the results on Android to make sure you are receiving the characters.
Hi, it works sending data to the Arduino but when i want to show the data from the Arduino on a (textView for example) just doesn't show anything. I would appreciate your help :)
The text was updated successfully, but these errors were encountered: