Skip to content

Add changed send trigger to list of changes in IDE 2.x Serial Monitor #287

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 28, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ You can also follow the [downloading and installing the Arduino IDE 2.0](/en/Tut

## Notable Changes

### Integrated Monitor

One major change that was introduced with the Arduino IDE 2.0 is the **integrated Serial Monitor**. The older versions of the editor features an external window that matches the port/board that we select.

The Arduino IDE 2.0 works a bit differently. Instead of opening an external window for the Serial Monitor, it shows up where the console log is located, as an additional tab. To understand how this works, let's take a look at how the old editor works:
Expand All @@ -36,12 +38,16 @@ Now, let's take a look at the IDE 2.0. Notice how the Serial Monitor is located

The Serial Monitor settings are also located here, such as adjusting the baud rate and sending messages.

### Advantages with New Integration
#### Advantages

A major advantage with having the Serial Monitor integrated with the editor is the possibility to have multiple monitors open simultaneously. In the old editor, when changing the port/board, it changed across all windows. In addition, we were limited to **one Serial Monitor window**, an obstacle that the IDE 2.0 removes.

You will find an example with more information on how to use this feature, further down this tutorial under the **Using multiple Serial Monitors simultaneously** section.

### Different Send Trigger

In the Arduino IDE 1.x Serial Monitor, data can be sent to the board by entering it in the field at the top of the window and then clicking the **Send** button or pressing the <kbd>**Enter**</kbd> key. In the Arduino IDE 2.0 Serial Monitor you must instead use the <kbd>**Ctrl**</kbd>+<kbd>**Enter**</kbd> keyboard shortcut (<kbd>**Command**</kbd>+<kbd>**Enter**</kbd> for macOS users).

## Using the Serial Monitor Tool

The Serial Monitor tool is a really great tool for debugging and establishing communication between a computer and an Arduino. To use it is really easy, but there are some things that we need to do first.
Expand Down