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/micropython/02.environment/03.modules/modules.md
+33-15
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,6 @@ description: 'Understanding modules in MicroPython and how to use them.'
4
4
author: 'Pedro Lima'
5
5
tags: [MicroPython, Modules]
6
6
---
7
-
8
-
9
7
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.
10
8
11
9
## What Are Modules?
@@ -55,39 +53,59 @@ Before we can install external modules, we need to have MicroPython running on o
55
53
56
54
### Step 2: Install the Modulino Package
57
55
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
+

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.
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:
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.
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).
30
30
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)**
The **MicroPython Package Installer** is a graphical tool that simplifies the installation of external modules without requiring command-line interaction.
38
34
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.
40
37
41
-
## Install Modulino Package
38
+

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.
42
44
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.
0 commit comments