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
{{ message }}
This repository was archived by the owner on Oct 22, 2021. It is now read-only.
Describe the bug
Serial Monitor only shows the incoming data after it receives '\n' character
To Reproduce
Steps to reproduce the behavior:
Go to 'Arduino Pro IDE v0.0.4'
upload this sketch:
voidsetup()
{
Serial.begin(9600);
}
voidloop()
{
for (uint8_t a=0; a<12; a++)
{
Serial.print("hello world!");
delay(1000);
}
Serial.write('\n');//if you comment this line you CANNOT see anything in serial monitor
}
comment Serial.write('\n');
re-upload the sketch
See the problem
Desktop (please complete the following information):
OS: Win 10
if you comment Serial.write('\n'); line you CANNOT see anything in serial monitor