Skip to content

Commit 236ea55

Browse files
committed
Update installation.md
1 parent f025bbc commit 236ea55

File tree

1 file changed

+14
-14
lines changed
  • content/micropython/03.micropython/modulinos/01.installation

1 file changed

+14
-14
lines changed

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

+14-14
Original file line numberDiff line numberDiff line change
@@ -13,32 +13,32 @@ In this tutorial, we will go through the installation process required for progr
1313

1414
The goals of this tutorial are:
1515

16-
- Learn how to install a MicroPython package on your board (the Modulino package).
16+
- Learn how to install a MicroPython package on an Arduino board (the Modulino package).
1717

1818
## Hardware & Software Needed
1919

20-
You will need a MicroPython compatible board that works with the Modulinos:
20+
We will need a MicroPython compatible board that works with the Modulinos:
2121
- [Arduino Nano ESP32](https://store.arduino.cc/products/nano-esp32?queryID=undefined)
2222
- [Arduino Nano RP2040 Connect](https://store.arduino.cc/en-se/products/arduino-nano-rp2040-connect)
2323

24-
You will also need the following software:
24+
We will also need the following software:
2525
- [MicroPython Labs](https://lab-micropython.arduino.cc/)
2626
- [MicroPython Installer](https://labs.arduino.cc/en/labs/micropython-installer)
2727
- [Modulino MicroPython package](https://github.com/arduino/arduino-modulino-mpy)
2828

2929
## Install MicroPython
3030

31-
To follow this tutorial, you will need to install MicroPython on your Arduino board. The easiest way is to install it using the [MicroPython Installer](https://labs.arduino.cc/en/labs/micropython-installer).
31+
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).
3232

3333
- Open the installer.
34-
- Connect your board.
34+
- Connect the board to the computer.
3535
- If it does not appear press the refresh button.
3636
- Press "Install MicroPython".
3737
- Wait for the installation to finish.
3838

3939
![MicroPython Installer](./assets/microPythonInstaller.png)
4040

41-
***More details on installing MicroPython on your board are available in the [MicroPython Installation guide]().***
41+
***More details on installing MicroPython on our board are available in the [MicroPython Installation guide]().***
4242

4343
## Install Modulino Package
4444

@@ -56,7 +56,7 @@ The easiest way of installing it is using `mpremote`. Currently, we will need a
5656
```bash
5757
pip install mpremote
5858
```
59-
This will install `mpremote`, which makes it possible to install packages on our board via your computer.
59+
This will install `mpremote`, which makes it possible to install packages on our board via our computer.
6060
2. With `mpremote` installed, we need to run the following command to identify our board's serial port:
6161
```bash
6262
mpremote connect list
@@ -69,15 +69,15 @@ The easiest way of installing it is using `mpremote`. Currently, we will need a
6969
```
7070
- The port here is `/dev/cu.usbmodem101`. Copy this.
7171

72-
3. Now, run the following the command. Make sure to replace `<PORT>` with the port of your device obtained in the previous step.
72+
3. Now, run the following the command. Make sure to replace `<PORT>` with the port of our device obtained in the previous step.
7373
```bash
7474
mpremote connect <PORT> mip install github:arduino/arduino-modulino-mpy
7575
```
7676

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

80-
4. Great job. We have now installed the Modulino package on your board!
80+
4. Great job. We have now installed the Modulino package on our board!
8181

8282
**Troubleshooting:**
8383
- Make sure your board is connected to your computer.
@@ -94,21 +94,21 @@ We can now verify that everything was installed correctly. Go to [MicroPython La
9494
9595
![MicroPython Labs](./assets/microPythonLabs.png)
9696
97-
Select the board and press select "connect". You should, now be connected to your Arduino board.
97+
Select the board and press select "connect". We should now be connected to our Arduino board.
9898
99-
***If you experience any issues, try disconnecting and connecting the board again and reinstall MicroPython using the [MicroPython Installer](https://labs.arduino.cc/en/labs/micropython-installer).***
99+
***If we experience any issues, try disconnecting and connecting the board again and reinstall MicroPython using the [MicroPython Installer](https://labs.arduino.cc/en/labs/micropython-installer).***
100100
101101
To verify that the Modulino package has been installed correctly, click on the file icon in the top bar of the Labs editor.
102102
103-
You should see a folder called `lib` and a file called `boot.py`. Go ahead and press on the `lib` folder and you should see several files and a folder called `modulino`.
103+
We should see a folder called `lib` and a file called `boot.py`. Go ahead and press on the `lib` folder and we should see several files and a folder called `modulino`.
104104
105105
![MicroPython Lab Files](./assets/microPythonLabsFiles.png)
106106
107-
If you see this, it means the package has been installed successfully.
107+
If we see this, it means the package has been installed successfully.
108108
109109
## Next Steps
110110
111-
Now that you have successfully installed everything it's time to program your first Modulino. Below are links to the documentation for all Modulinos. They are also accessible in the side menu at [Arduino Docs - MicroPython](https://docs.arduino.cc/micropython/), under "Modulinos".
111+
Now that we have successfully installed everything it's time to program our first Modulino. Below are links to the documentation for all Modulinos. They are also accessible in the side menu at [Arduino Docs - MicroPython](https://docs.arduino.cc/micropython/), under "Modulinos".
112112

113113
- [Modulino Distance](/micropython/modulinos/modulino-distance)
114114
- [Modulino Pixels](/micropython/modulinos/modulino-pixels)

0 commit comments

Comments
 (0)