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
Copy file name to clipboardExpand all lines: content/software/ide-v2/tutorials/01.getting-started-ide-v2/ide-v2-autocomplete-feature.md
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: 'An introductory guide to the Arduino IDE 2.'
5
5
tags:
6
6
- Arduino IDE 2
7
7
- Software Tools
8
-
author: 'Karl Söderby'
8
+
author: 'Karl Söderby & Jacob Hylén'
9
9
---
10
10
11
11
Makers, students & professionals have been using the classic Arduino IDE (Integrated Development Environment) ever since Arduino was born.
@@ -55,9 +55,9 @@ To access your sketchbook, click on the **folder icon** located in the sidebar.
55
55
56
56

57
57
58
-
With the Boards Manager, you can browse and install packages, or "cores" for your boards. A board package is always required when compiling and uploading code for your board.
58
+
With the Boards Manager, you can browse and install packages, or "cores" for your boards. A core is always required when compiling and uploading code for your board.
59
59
60
-
There are several Arduino board packages available, such as **avr, samd, megaavr** and more.
60
+
There are several Arduino cores available, such as **avr, samd, megaavr** and more.
61
61
62
62
***To learn more about the Boards Manager, visit the [Installing new boards tutorial](/software/ide-v2/tutorials/ide-v2-board-manager).***
63
63
@@ -102,7 +102,7 @@ The debugger tool is used to test and **debug** programs, hence the name. It can
102
102
103
103

104
104
105
-
Autocompletion is a must-have for code editors, and the 2.0 version comes well equipped. When writing code, this is useful to understand more about the elements of the Arduino API.
105
+
Autocompletion is a must-have for code editors, and the 2 version comes well equipped. When writing code, this is useful to understand more about the elements of the Arduino API.
106
106
107
107
Note that you always need to select your board for autocompletion to work.
108
108
@@ -114,6 +114,10 @@ Note that you always need to select your board for autocompletion to work.
114
114
115
115
The Remote Sketchbook feature lets you sync sketches from your [Arduino Cloud](https://cloud.arduino.cc/) sketchbook with your local computer. To enable this feature, you will need to login to your Arduino Cloud account.
116
116
117
+
You can also create a new cloud sketch directly in the IDE.
118
+
119
+

120
+
117
121
***To learn more about the Remote Sketchbook feature, visit the [Synchronizing Sketches tutorial](/software/ide-v2/tutorials/ide-v2-cloud-sketch-sync).***
118
122
119
123
### Firmware & Certificate Uploader
@@ -126,7 +130,7 @@ You can upgrade and downgrade the firmware version for your Wi-Fi boards (with a
126
130
127
131
## Contribute
128
132
129
-
The Arduino IDE 2 is an open-source project that is free for anyone to download. You can contribute to the project through [donations](https://www.arduino.cc/en/donate/), or by reporting issues at[our GitHub repository](https://github.com/arduino/arduino-ide).
133
+
The Arduino IDE 2 is an open-source project that is free for anyone to download. You can contribute to the project through [donations](https://www.arduino.cc/en/donate/), or by reporting issues to[our GitHub repository](https://github.com/arduino/arduino-ide).
Copy file name to clipboardExpand all lines: content/software/ide-v2/tutorials/getting-started/02.ide-v2-uploading-a-sketch/ide-v2-uploading-a-sketch.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: 'Learn the basics of verifying and uploading sketches with the new
5
5
tags:
6
6
- Uploading
7
7
- Basics
8
-
author: 'Karl Söderby'
8
+
author: 'Karl Söderby & Jacob Hylén'
9
9
---
10
10
11
11
## How to Upload a Sketch with the Arduino IDE 2
@@ -36,10 +36,14 @@ Uploading a sketch is quick and easy, but let's take a look at what we need to d
36
36
37
37

38
38
39
-
**3.**First, we need to select the board that we are going to use. We can do this by navigating to **Tools > Port > {Board}**. The board(s) that are connected to your computer should appear here, and we need to select it by clicking it. In this case, our board is displayed as **COM17 (Arduino MKR WiFi1010)**.
39
+
**3.**But before doing any of that, we should choose what board we are uploading to. Beside the verify and upload button you should see a a drop down menu, this will, in most cases, display Arduino boards that are connected to your computer. If your board is not automatically detected, you can either press "Select other board and port..." in the drop-down and follow the instructions, or go to **Tools > Board** and **Tools > Port** in the toolbar menu to select the board and port manually.
40
40
41
41

42
42
43
+
So connect your board to the computer and select it from the drop down menu. You'll know that there is a connection to the board when the board name appears in **bold**.
44
+
45
+

46
+
43
47
**4.** Click on the verify tool (checkmark). Since we are verifying an empty sketch, we can be sure it is going to compile. After a few seconds, we can see the result of the action in the console (black box in the bottom).
44
48
45
49

0 commit comments