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
description: 'Get started with using the Modulino Distance'
3
+
description: 'Get started with the Modulino Distance using MicroPython'
5
4
author: 'Hannes Siebeneicher, Sebastian Romero'
6
5
hero_image: "./hero-banner.png"
7
-
8
6
---
9
7
10
-
This article will show you how to get started with the Modulino Distance and measure the distance to an object.
8
+
In this tutorial, we will get started with the Modulino Distance, which can measure the distance to an object.
9
+
10
+
***Note that the installation of the Modulino package is not covered in this tutorial. For details on how to install this, visit the [MicroPython - Modulino Package Installation tutorial](/micropython/modulinos/installation).***
11
11
12
12
## Goals
13
13
14
14
The goals of this tutorial are:
15
15
16
-
- learn how to connect a Modulino to the Arduino Nano ESP32.
16
+
- learn how to connect a Modulino to an Arduino using MicroPython
Before programming it, you need to first connect your Modulino Distance to your Arduino Nano ESP32. Follow the diagram below to connect your Modulino Distance and Nano ESP32.
32
+
Before we start programming, we will need to connect our Modulino Distance to our Arduino board. For this we can follow the circuit diagram below:
30
33
31
34
![Circuit Diagram]()
32
35
33
-
## Code
36
+
## Modulino Distance Code Example
34
37
35
-
Copy the code below and run it in Arduino MicroPython labsconnected to your Arduino Nano ESP32.
38
+
Copy the code below and run it in Arduino MicroPython labs, while connected to our board.
Copy file name to clipboardExpand all lines: content/micropython/03.micropython/modulinos/03.modulino-pixels/modulino-pixels.md
+13-9
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,14 @@
1
1
---
2
2
3
3
title: 'Modulino Pixels'
4
-
description: 'Get started with using the Modulino Pixels'
4
+
description: 'Get started with the Modulino Pixels using MicroPython'
5
5
author: 'Hannes Siebeneicher, Sebastian Romero'
6
6
hero_image: "./hero-banner.png"
7
-
8
7
---
9
8
10
-
This article will show you how to get started with the Modulino Pixels and control RGB LEDs.
9
+
In this tutorial, we will get started with the Modulino Pixels and control its RGB LEDs.
10
+
11
+
***Note that the installation of the Modulino package is not covered in this tutorial. For details on how to install this, visit the [MicroPython - Modulino Package Installation tutorial](/micropython/modulinos/installation).***
11
12
12
13
## Goals
13
14
@@ -18,21 +19,24 @@ The goals of this tutorial are:
Before programming it, you need to first connect your Modulino Pixels to your Arduino Nano ESP32. Follow the diagram below to connect your Modulino Pixels and Nano ESP32.
33
+
Before we start programming, we will need to connect our Modulino Pixels to our Arduino board. For this we can follow the circuit diagram below:
30
34
31
35
![Circuit Diagram]()
32
36
33
-
## Code
37
+
## Modulino Pixels Code Example
34
38
35
-
Copy the code below and run it in Arduino MicroPython labsconnected to your Arduino Nano ESP32.
39
+
Copy the code below and run it in Arduino MicroPython labs, while connected to our board.
36
40
37
41
```python
38
42
from modulino import ModulinoPixels, ModulinoColor
0 commit comments