8000 Serial Monitor only shows the incoming data after it receives '\n' character · Issue #201 · arduino/arduino-pro-ide · GitHub
[go: up one dir, main page]

Skip to content
Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on Oct 22, 2021. It is now read-only.
This repository was archived by the owner on Oct 22, 2021. It is now read-only.
Serial Monitor only shows the incoming data after it receives '\n' character #201
Closed
@Master811129

Description

@Master811129

Describe the bug
Serial Monitor only shows the incoming data after it receives '\n' character

To Reproduce
Steps to reproduce the behavior:

  1. Go to 'Arduino Pro IDE v0.0.4'
  2. upload this sketch:
void setup()
{
    Serial.begin(9600);
}

void loop()
{
    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
}
  1. comment Serial.write('\n');
  2. re-upload the sketch
  3. 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

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions

    0