Skip to content

Serial Monitor new line text hiding behind status bar #1198

Closed as not planned
@cije49

Description

@cije49

Describe the problem

When you Serial.print(); something to serial monitor, new line text hides behind the status bar (the blue ribbon on the bottom of the program window) as the text is scrolling

Video example:

final_62d1e39659bd3700b634bc59_516311.mp4

arduinoIDE_200

With Nightly:

with_nightly

To reproduce

Just copy the code below and upload to any Arduino board ( i tried with Arduino Nano and Generic ESP8266)

int i = 0;

void setup() {
  Serial.begin(115200);
}

void loop() {
  i++;
  Serial.println(i);
  delay(200);
}

Expected behavior

You can expect to have every new line printed in the Serial monitor to be hidden behind the status bar (the blue ribbon on the bottom of the window)

Arduino IDE version

Version: 2.0.0-rc8-nightly-20220713 Date: 2022-07-13T03:32:42.528Z CLI Version: 0.24.0 [c1b10f56] Copyright © 2022 Arduino SA

Operating system

Windows, Linux

Operating system version

Windows 10; Kali Linux release 2022.2

Additional context

No response

Issue checklist

  • I searched for previous reports in the issue tracker
  • I verified the problem still occurs when using the latest nightly build
  • My report contains all necessary details

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions