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-v1/tutorials/arduino-ide-v1-basics/arduino-ide-v1-basics.md
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -13,39 +13,39 @@ Programs written using Arduino Software (IDE) are called **sketches**. These ske
13
13
14
14
**NB: Versions of the Arduino Software (IDE) prior to 1.0 saved sketches with the extension .pde. It is possible to open these files with version 1.0, you will be prompted to save the sketch with the .ino extension on save.**
15
15
16
-

16
+

17
17
18
18
_Verify_
19
19
Checks your code for errors compiling it.
20
20
21
-

21
+

22
22
23
23
_Upload_
24
24
Compiles your code and uploads it to the configured board. See [uploading](#uploading) below for details.
25
25
26
26
Note: If you are using an external programmer with your board, you can hold down the "shift" key on your computer when using this icon. The text will change to "Upload using Programmer"
27
27
28
-

28
+

29
29
30
30
_New_
31
31
Creates a new sketch.
32
32
33
-

33
+

34
34
35
35
_Open_
36
36
Presents a menu of all the sketches in your sketchbook. Clicking one will open it within the current window overwriting its content.
37
37
38
38
Note: due to a bug in Java, this menu doesn't scroll; if you need to open a sketch late in the list, use the **File | Sketchbook** menu instead.
39
39
40
-

40
+

41
41
42
42
_Save_
43
43
Saves your sketch.
44
44
45
-

45
+

46
46
47
47
_Serial Monitor_
48
-
Opens the [serial monitor](#serialmonitor).
48
+
Opens the [serial monitor](#serial-monitor).
49
49
50
50
Additional commands are found within the five menus: **File**, **Edit**, **Sketch**, **Tools**, **Help**. The menus are context sensitive, which means only those items relevant to the work currently being carried out are available.
51
51
@@ -169,7 +169,7 @@ Additional commands are found within the five menus: **File**, **Edit**, **Sketc
169
169
This menu contains all the serial devices (real or virtual) on your machine. It should automatically refresh every time you open the top-level tools menu.
170
170
171
171
-_Programmer_
172
-
For selecting a hardware programmer when programming a board or chip and not using the onboard USB-serial connection. Normally you won't need this, but if you're [burning a bootloader](/en/Tutorial/BuiltInExamples/ArduinoISP) to a new microcontroller, you will use this.
172
+
For selecting a hardware programmer when programming a board or chip and not using the onboard USB-serial connection. Normally you won't need this, but if you're [burning a bootloader](/built-in-examples/arduino-isp/ArduinoISP) to a new microcontroller, you will use this.
173
173
174
174
-_Burn Bootloader_
175
175
The items in this menu allow you to burn a [bootloader](/hacking/software/Bootloader) onto the microcontroller on an Arduino board. This is not required for normal use of an Arduino board but is useful if you purchase a new ATmega microcontroller (which normally come without a bootloader). Ensure that you've selected the correct board from the **Boards** menu before burning the bootloader on the target board. This command also set the right fuses.
@@ -204,9 +204,9 @@ When you upload a sketch, you're using the Arduino **bootloader**, a small progr
204
204
205
205
Libraries provide extra functionality for use in sketches, e.g. working with hardware or manipulating data. To use a library in a sketch, select it from the **Sketch > Import Library** menu. This will insert one or more **#include** statements at the top of the sketch and compile the library with your sketch. Because libraries are uploaded to the board with your sketch, they increase the amount of space it takes up. If a sketch no longer needs a library, simply delete its **#include** statements from the top of your code.
206
206
207
-
There is a [list of libraries](arduino.cc/en/Reference/Libraries) in the reference. Some libraries are included with the Arduino software. Others can be downloaded from a variety of sources or through the Library Manager. Starting with version 1.0.5 of the IDE, you do can import a library from a zip file and use it in an open sketch. See these [instructions for installing a third-party library](/learn/programming/libraries).
207
+
There is a [list of libraries](https://www.arduino.cc/reference/en/libraries/) in the reference. Some libraries are included with the Arduino software. Others can be downloaded from a variety of sources or through the Library Manager. Starting with version 1.0.5 of the IDE, you do can import a library from a zip file and use it in an open sketch. See these [instructions for installing a third-party library](/software/ide-v1/tutorials/installing-libraries).
208
208
209
-
To write your own library, see [this tutorial](/en/Hacking/LibraryTutorial).
209
+
To write your own library, see [this tutorial](/learn/contributions/arduino-creating-library-guide).
210
210
211
211
## Third-Party Hardware
212
212
@@ -218,15 +218,15 @@ For details on creating packages for third-party hardware, see the [Arduino Plat
218
218
219
219
This displays serial sent from the Arduino board over USB or serial connector. To send data to the board, enter text and click on the "send" button or press enter. Choose the baud rate from the drop-down menu that matches the rate passed to **Serial.begin** in your sketch. Note that on Windows, Mac or Linux the board will reset (it will rerun your sketch) when you connect with the serial monitor. Please note that the Serial Monitor does not process control characters; if your sketch needs a complete management of the serial communication with control characters, you can use an external terminal program and connect it to the COM port assigned to your Arduino board.
220
220
221
-
You can also talk to the board from Processing, Flash, MaxMSP, etc (see the [interfacing page](/playground/Main/Interfacing) for details).
221
+
You can also talk to the board from Processing, Flash, MaxMSP, etc (see the [interfacing page](https://playground.arduino.cc/Main/InterfacingWithHardware/) for details).
222
222
223
223
## Preferences
224
224
225
225
Some preferences can be set in the preferences dialog (found under the **Arduino** menu on the Mac, or **File** on Windows and Linux). The rest can be found in the preferences file, whose location is shown in the preference dialog.
226
226
227
227
## Language Support
228
228
229
-

229
+

230
230
231
231
Since version 1.0.1 , the Arduino Software (IDE) has been translated into 30+ different languages. By default, the IDE loads in the language selected by your operating system. (Note: on Windows and possibly Linux, this is determined by the locale setting which controls currency and date formats, not by the language the operating system is displayed in.)
232
232
@@ -236,9 +236,9 @@ You can return the software to its default setting of selecting its language bas
236
236
237
237
## Boards
238
238
239
-
The board selection has two effects: it sets the parameters (e.g. CPU speed and baud rate) used when compiling and uploading sketches; and sets and the file and fuse settings used by the burn bootloader command. Some of the board definitions differ only in the latter, so even if you've been uploading successfully with a particular selection you'll want to check it before burning the bootloader. You can find a comparison table between the various boards [here](/en/Products/Compare).
239
+
The board selection has two effects: it sets the parameters (e.g. CPU speed and baud rate) used when compiling and uploading sketches; and sets and the file and fuse settings used by the burn bootloader command. Some of the board definitions differ only in the latter, so even if you've been uploading successfully with a particular selection you'll want to check it before burning the bootloader. You can find different boards [here](https://www.arduino.cc/en/hardware).
240
240
241
-
Arduino Software (IDE) includes the built in support for the boards in the following list, all based on the AVR Core. The [Boards Manager](arduino.cc/en/Guide/Cores) included in the standard installation allows to add support for the growing number of new boards based on different cores like Arduino Due, Arduino Zero, Edison, Galileo and so on.
241
+
Arduino Software (IDE) includes the built in support for the boards in the following list, all based on the AVR Core. The [Boards Manager](/learn/starting-guide/cores) included in the standard installation allows to add support for the growing number of new boards based on different cores like Arduino Due, Arduino Zero, Edison, Galileo and so on.
242
242
243
243
-_Arduino Yún_
244
244
An ATmega32u4 running at 16 MHz with auto-reset, 12 Analog In, 20 Digital I/O and 7 PWM.
@@ -303,4 +303,4 @@ Arduino Software (IDE) includes the built in support for the boards in the follo
303
303
-_Arduino Gemma_
304
304
An ATtiny85 running at 8 MHz with auto-reset, 1 Analog In, 3 Digital I/O and 2 PWM.
305
305
306
-
For instructions on installing support for other boards, see [third-party hardware](#thirdpartyhardware) above.
306
+
For instructions on installing support for other boards, see [third-party hardware](#third-party-hardware) above.
0 commit comments