Skip to content

Commit ae86d39

Browse files
Merge pull request #2382 from arduino/Pedromsousalima/micropython/package-installer-steps
[PXCT-406] Added steps for package installer
2 parents ec632dc + 00a988e commit ae86d39

File tree

6 files changed

+48
-28
lines changed

6 files changed

+48
-28
lines changed
Loading
Loading

content/micropython/02.environment/03.modules/modules.md

+33-15
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ description: 'Understanding modules in MicroPython and how to use them.'
44
author: 'Pedro Lima'
55
tags: [MicroPython, Modules]
66
---
7-
8-
97
In this guide, we’ll cover how modules work in MicroPython, explore a few built-in modules, and demonstrate how to install an external package like Modulino to extend our MicroPython project’s functionality.
108

119
## What Are Modules?
@@ -55,39 +53,59 @@ Before we can install external modules, we need to have MicroPython running on o
5553

5654
### Step 2: Install the Modulino Package
5755

58-
To install the Modulino package, we’ll use `mpremote`, a tool that allows us to install MicroPython packages directly onto our board from the command line.
56+
There are multiple ways to install external modules in MicroPython. We’ll cover two common methods:
57+
- **Using the MicroPython Package Installer (GUI)** (Recommended for ease of use)
58+
- **Using `mpremote` (Command-line installation)**
59+
60+
#### Option 1: Using the MicroPython Package Installer (Recommended)
61+
The **MicroPython Package Installer** is a graphical tool that makes it easy to install external modules without needing to use the command line.
62+
63+
1. **Download and install** the [MicroPython Package Installer](https://github.com/arduino/lab-micropython-package-installer/releases).
64+
2. **Open the tool** and plug in your board.
65+
![Board connected via USB](assets/usb-comp.png)
66+
67+
If the board does not appear in the `Detected Boards` section, click `Reload`.
68+
If the board is still not detected, ensure no other programs (e.g., a code editor) are using the board's COM port.
69+
70+
3. **Search for the Modulino package** using the search feature.
71+
4. Click **Install** and wait for the installation confirmation.
72+
5. **Disconnect the board** from the tool before returning to your code editor to avoid conflicts due to the COM port being busy.
73+
74+
![Package Installer UI](assets/package-installer.png)
5975

60-
1. Make sure Python is installed on your computer
61-
2. Open a terminal on your machine.
62-
3. Run the following command to install `mpremote`.
76+
#### Option 2: Using `mpremote` (Command Line Installation)
77+
For those who prefer the command line, we can use `mpremote`, a Python tool that allows direct installation from the terminal.
78+
79+
1. Make sure **Python** is installed on your computer.
80+
2. Open a terminal and install `mpremote` with:
6381

6482
```bash
6583
pip install mpremote
66-
```
84+
```
6785

68-
4. With `mpremote` installed, run the following script to find our board's serial port.
86+
3. Run the following command to find your board's serial port:
6987

7088
```bash
7189
mpremote connect list
72-
```
90+
```
7391

74-
This command should return something akin to:
92+
Example output:
7593

76-
```bash
94+
```
7795
/dev/cu.usbmodem101 ecda3b60a4dccb3f 2341:056b Arduino Nano ESP32
7896
```
7997

80-
- Copy the port, e.g., `/dev/cu.usbmodem101`.
98+
- Copy the **port**, e.g., `/dev/cu.usbmodem101`.
8199

82-
5. Use the following command to install the Modulino package (or any other package we want to install), replacing `<PORT>` with our board’s port retrieved in the previous step.
100+
4. Use the following command to install the Modulino package (or any other package), replacing `<PORT>` with your board’s serial port:
83101

84102
```bash
85103
mpremote connect <PORT> mip install github:arduino/arduino-modulino-mpy
86104
```
87105

88-
6. After the installation, open Arduino Labs for MicroPython, and connect your board. In the board's files, we should see a `/lib` folder with the Modulino library inside, indicating a successful installation.
106+
5. After installation, open **Arduino Labs for MicroPython** and connect your board. You should see a `/lib` folder with the Modulino library inside, confirming a successful installation.
89107

90-
![MicroPython Lab Files](./assets/microPythonLabsFiles.png)
108+
![MicroPython Lab Files](./assets/microPythonLabsFiles.png)
91109

92110
## Organizing and Using Modules
93111

Loading
Loading

content/micropython/05.modulinos/01.installation/installation.md

+15-13
Original file line numberDiff line numberDiff line change
@@ -23,26 +23,28 @@ We will also need the following software:
2323
- [MicroPython Labs](https://lab-micropython.arduino.cc/)
2424
- [MicroPython Installer](https://labs.arduino.cc/en/labs/micropython-installer)
2525
- [Modulino MicroPython package](https://github.com/arduino/arduino-modulino-mpy)
26+
- [MicroPython package installer](https://github.com/arduino/lab-micropython-package-installer/releases)
2627

2728
## Install MicroPython
2829

29-
To follow this tutorial, we will need to install MicroPython on our Arduino board. The easiest way is to install it using the [MicroPython Installer](https://labs.arduino.cc/en/labs/micropython-installer).
3030

31-
- Open the installer.
32-
- Connect the board to the computer.
33-
- If it does not appear press the refresh button.
34-
- Press "Install MicroPython".
35-
- Wait for the installation to finish.
31+
### Option 1: Using the MicroPython Package Installer **(Recommended)**
3632

37-
![MicroPython Installer](./assets/microPythonInstaller.png)
33+
The **MicroPython Package Installer** is a graphical tool that simplifies the installation of external modules without requiring command-line interaction.
3834

39-
***More details on installing MicroPython on our board are available in the [MicroPython installation guide](/micropython/first-steps/install-guide).***
35+
1. **Download and install** the [MicroPython Package Installer](https://github.com/arduino/lab-micropython-package-installer/releases).
36+
2. **Open the tool** and plug in your board.
4037

41-
## Install Modulino Package
38+
![Board connected via USB](assets/usb-comp.png)
39+
If the board does not appear in the `Detected Boards` section, click `Reload`.
40+
If the board is still not detected, ensure no other programs (e.g., a code editor) are using the board's COM port.
41+
1. **Search for the Modulino package** using the search feature.
42+
2. Click **Install** and wait for the installation confirmation.
43+
3. **Disconnect the board** before returning to your code editor to avoid conflicts due to the COM port being busy.
4244

43-
To program Modulinos using MicroPython we must first install the Modulino package. It's where all the code, necessary to interact with the Modulinos is being stored.
45+
![Package Installer UI](assets/package-installer.png)
4446

45-
### Terminal Installation
47+
### Option 2: Terminal Installation
4648

4749
To install a module, we can use `mpremote`. Currently, we will need a version of Python installed on our computer.
4850

@@ -63,15 +65,15 @@ To install a module, we can use `mpremote`. Currently, we will need a version of
6365
```
6466
The port here is `/dev/cu.usbmodem101`. Copy this.
6567

66-
1. Now, run the following the command. Make sure to replace `<PORT>` with the port of our device obtained in the previous step.
68+
3. Now, run the following the command. Make sure to replace `<PORT>` with the port of our device obtained in the previous step.
6769
```bash
6870
mpremote connect <PORT> mip install github:arduino/arduino-modulino-mpy
6971
```
7072

7173
Upon completion, we should see something like this in the terminal, to verify the success of the installation:
7274
![Successful installation.](assets/package-installed.png)
7375

74-
2. Great job. We have now installed the Modulino package on our board!
76+
4. Great job. We have now installed the Modulino package on our board!
7577

7678
**Troubleshooting:**
7779
- Make sure your board is connected to your computer.

0 commit comments

Comments
 (0)