Skip to content

Commit fef06d6

Browse files
Apply suggestions from code review
Co-authored-by: Jacob Hylén <60390259+jacobhylen@users.noreply.github.com>
1 parent 8a1f39c commit fef06d6

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

content/micropython/01.basics/07.installing-modules/installing-modules.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ In this article, we will cover these two methods, as well as how to remove them
1616

1717
## Hardware & Software Needed
1818

19-
- A [MicroPython compatible board](/micropython/basics/board-installation#supported-boards),
19+
- [A MicroPython compatible board](/micropython/basics/board-installation#supported-boards),
20+
2021
- [Arduino Lab for MicroPython editor](https://labs.arduino.cc/en/labs/micropython),
2122
- [mpremote](https://pypi.org/project/mpremote/) (optional).
2223

@@ -28,6 +29,9 @@ In this article, we will cover these two methods, as well as how to remove them
2829

2930
To use the `mip` module, you will however need to connect to Internet via a Wi-Fi network first. To do so, open the **Arduino Lab for MicroPython editor**, and run the following code:
3031

32+
***Note: Replace "YOUR_NETWORK_NAME" and "" YOUR_NETWORK_PASSWORD" with the SSID and password for your Wi-Fi® network.***
33+
34+
3135
```python
3236
import network
3337

@@ -54,7 +58,8 @@ mip.install(github:org/repo)
5458
Or you can specify the url to the file you want to install:
5559

5660
```
57-
mip.install(https://raw.githubusercontent.com/tinypico/tinypico-micropython/master/lis3dh%20library/lis3dh.py)
61+
mip.install("https://raw.githubusercontent.com/tinypico/tinypico-micropython/master/lis3dh%20library/lis3dh.py")
62+
5863
```
5964

6065
Files are added to a folder named `lib` on your board.

0 commit comments

Comments
 (0)