Skip to content
Merged
Show file tree
Hide file tree
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

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
title: "Find replacement components for your Arduino Education kit"
title: "Find replacement components for your Arduino kit"
id: 4409205367186
---

Most components for the Arduino Education kits can be found in the [Arduino Store](https://store.arduino.cc/). Learn more about specific options below.
Most components for the Arduino kits can be found in the [Arduino Store](https://store.arduino.cc/). Learn more about specific options below.

## Arduino Replacement Pack

Expand All @@ -21,7 +21,12 @@ The [Arduino Replacement Pack](https://store.arduino.cc/collections/accessories/
- View our collection of boards [here](https://store.arduino.cc/collections/boards?page=1&grid_list=list-view).
- Other accessories can be found [here](https://store.arduino.cc/collections/accessories?page=1&grid_list=list-view).

## Arduino Starter Kit project book

- The project book is used in connection to the board and components included in the [Arduino Starter Kit](https://store.arduino.cc/products/arduino-starter-kit-multi-language). Therefore, it is not possible to purchase the project book separately.
- [Contact us](https://www.arduino.cc/en/contact-us/) if you encounter any issues with the project book included in your [Arduino Starter Kit](https://store.arduino.cc/products/arduino-starter-kit-multi-language).

## Still need help?

- [Read this](https://support.arduino.cc/hc/en-us/articles/4406561528210-If-an-Arduino-Education-kit-component-is-missing-or-not-working) if a component is missing or not working.
- Check [If an Arduino Education kit component is missing or not working](https://support.arduino.cc/hc/en-us/articles/4406561528210-If-an-Arduino-Education-kit-component-is-missing-or-not-working).
- If a component is not available in the online shop, please [contact us](https://www.arduino.cc/en/contact-us/).
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ title: "Where is the activation code for my kit?"
id: 4402999992850
---

Some, but not all, Arduino kits include a activation code for online content access, or software licenses such as Matlab for the Engineering kit, or the 12 months free Cloud Maker plan included with the Oplà IoT kit.
Some, but not all, Arduino kits include an activation code for accessing online content, software licenses such as Matlab for the Engineering Kit, or the 12 free months of the Cloud Maker Plan offered with the Oplà IoT Kit.

The activation code along with activation activation can be found inside the kit. Both will typically be visible when the box is opened, on the inside of the lid or on the cardboard material.
You can find the activation code inside the kit. It will typically be visible when the box is opened (on the inside of the lid or on the cardboard material).

> Note: The Arduino Starter Kit Multi-Language doesn't need to be activated, and does not come with an activation code.
> Note: The Arduino Starter Kit Multi-Language doesn't need to be activated and, therefore, does't come with an activation code.

## Further reading

* <a class="link-chevron-right" href="https://support.arduino.cc/hc/en-us/articles/4407393580818-Register-an-Arduino-Education-Kit#fnref1">Register an Arduino Education Kit</a>
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@ Learn how to download and install the desktop-based Arduino IDE.

### Windows

1. <a class="link-download" href="https://downloads.arduino.cc/arduino-ide/arduino-ide_latest_Windows_64bit.exe">Download the latest release</a>
2. Follow the instructions in the installation guide.
3. When completing the setup, leave _Run Arduino IDE_ ticked to launch the application, or launch it later from the Start Menu.
1. <a class="link-download" href="https://downloads.arduino.cc/arduino-ide/arduino-ide_latest_Windows_64bit.exe">Download the latest release</a> (The download will start after you click this link. Check your browser's download manager or the Downloads folder on your computer to find the downloaded file)
2. Double-click the executable (.exe) file.
3. Follow the instructions in the installation guide.
4. When completing the setup, leave _Run Arduino IDE_ ticked to launch the application, or launch it later from the Start Menu.

### macOS

1. <a class="link-download" href="https://downloads.arduino.cc/arduino-ide/arduino-ide_latest_macOS_64bit.dmg">Download the latest release</a>
1. <a class="link-download" href="https://downloads.arduino.cc/arduino-ide/arduino-ide_latest_macOS_64bit.dmg">Download the latest release</a> (The download will start after you click this link. Check your browser's download manager or the Downloads folder on your computer to find the downloaded file)
2. Double-click the disk image (.dmg) file.
3. Drag and drop the Arduino IDE application into the Applications folder.
4. Launch Arduino IDE the same way you would launch any other application (such as <kbd>⌘</kbd> + <kbd>Space</kbd> for Spotlight and search for "Arduino").
Expand Down Expand Up @@ -63,8 +64,6 @@ If Arduino IDE fails to open, and you see the text `dlopen(): error loading libf

<a class="link-external" href="https://www.arduino.cc/en/software">View all download options on the Software page</a>

**[View all download options on the Software page](https://www.arduino.cc/en/software).**

---

## If you need help
Expand Down

This file was deleted.

6 changes: 5 additions & 1 deletion content/Software Support/Upload/Fix-port-access-on-Linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Another cause of errors are other processes that are using the port.
lsof <port name>
```

The output may look something like this:
If there is a process using the port, the output may look like this:

```
username@computer:~$ lsof /dev/ttyACM0
Expand Down Expand Up @@ -149,3 +149,7 @@ Another cause of errors are other processes that are using the port.
```

7. Try uploading your sketch again.

## Still need help?

If you still need help using your Arduino board, [contact us](https://www.arduino.cc/en/contact-us/).
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ In the above example, `value` we will be assigned an indeterminate value from me

Try this to check for and avoid runtime errors:

* **Try uploading a simple example from the IDE**. If it works, the problem may be due to a runtime error.
* **Try uploading a simple example**. If it works, the problem may be due to a runtime error.
* Using **IDE 2:** On the toolbar menu, go to `File > Examples > 01.Basics` and choose the *Blink* sketch. Click the ![Upload button](img/symbol_upload.png) **Upload** button.
* Using **Web Editor:** On the left-most sidebar, go to `Examples > 01.Basics` and choose the *Blink* sketch. Click the ![Web Editor upload button.](img/symbol_upload-web.png) **Upload** button.
* Take care to not assign values or read from outside the range of a declared array.
* Debug the code by inserting [`Serial.print()`](https://www.arduino.cc/reference/en/language/functions/communication/serial/print/) calls and checking the Serial Monitor. Use this method to check what values get assigned to important variables and when the code branches, e.g. on an `if()` statement. Consider using the [ArduinoTrace](https://www.arduino.cc/reference/en/libraries/arduinotrace/) to make this process simpler.

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.