- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Stop Autoscroll in Serial Terminal in Arduino
Suppose you have a code like the one below −
Example
void setup() { Serial.begin(9600); } void loop() { // put your main code here, to run repeatedly: Serial.println(analogRead(A0)); }
As you can see, it is continuously printing the results of ADC conversion on A0 pin. Such programs can fill up the Serial Terminal quickly, faster than your eyes can register. For such cases, you may want to simply stop the scrolling in the Serial Monitor. You can do that by unchecking the Autoscroll checkbox at the left bottom of the Serial Monitor Window.
Output
Once that is done, you can read the values at your own pace by using the scroll bar.
- Related Articles
- Serial Plotter in Arduino
- Software Serial in Arduino
- View Serial Output in Arduino
- Serial Filtering Library in Arduino
- Difference between hardware serial and software serial in Arduino
- Read values sent by Serial Monitor to Arduino
- How to change the baud rate of the Serial Monitor in Arduino?
- How to Use a Serial Monitor with Arduino IDE 2.0?
- Calculation of Serial and Non-Serial Schedules in DBMS
- Serial Killings in India
- Bash Terminal Redirect to another Terminal
- Terminal Control Functions in Python
- Pseudo-terminal Utilities in Python
- Print Colors of terminal in Python
- Sending Emails From Terminal In Linux

Advertisements