Skip to content

Commit 1008daf

Browse files
committed
buzzer, buttons, knob, movement, thermo
1 parent 132992a commit 1008daf

File tree

5 files changed

+57
-42
lines changed

5 files changed

+57
-42
lines changed

content/micropython/03.micropython/modulinos/04.modulino-buzzer/modulino-buzzer.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Before we start programming, we will need to connect our Modulino Buzzer to our
3333

3434
![Circuit Diagram]()
3535

36-
## Modulino Pixels Code Example
36+
## Modulino Buzzer Code Example
3737

3838
Copy the code below and run it in Arduino MicroPython labs, while connected to our board.
3939

content/micropython/03.micropython/modulinos/05.modulino-buttons/modulino-buttons.md

+15-11
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,42 @@
11
---
2-
32
title: 'Modulino Buttons'
4-
description: 'Get started with using the Modulino Buttons'
3+
description: 'Get started with the Modulino Buttons using MicroPython'
54
author: 'Hannes Siebeneicher, Sebastian Romero'
65
hero_image: "./hero-banner.png"
7-
86
---
97

10-
This article will show you how to get started with the Modulino Buttons, a three-button Modulino.
8+
In this tutorial, we will get started with the Modulino Buttons, a three-button Modulino.
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).***
1111

1212
## Goals
1313

1414
The goals of this tutorial are:
1515

16-
- learn how to connect a Modulino to the Arduino Nano ESP32.
16+
- learn how to connect a Modulino to an Arduino board.
1717
- learn how to program the Modulino Buttons.
1818

1919
## Hardware & Software Needed
2020

21-
- [MicroPython Labs](https://lab-micropython.arduino.cc/)
22-
- [Arduino Nano ESP32](https://store.arduino.cc/products/nano-esp32?queryID=undefined)
23-
- [Modulino MicroPython Package](https://github.com/arduino/arduino-modulino-mpy)
21+
For this tutorial, we will need the following hardware:
2422
- [Modulino Buttons](https://store.arduino.cc/products/plug-and-make-kit)
2523
- [Arduino Nano to QWIIC Connector Carrier]()
24+
- [Arduino Nano ESP32](https://store.arduino.cc/products/nano-esp32?queryID=undefined) or [Arduino Nano RP2040 Connect](https://store.arduino.cc/en-se/products/arduino-nano-rp2040-connect)
25+
26+
We will also need the following software:
27+
- [MicroPython Labs](https://lab-micropython.arduino.cc/)
28+
- [Modulino MicroPython Package](https://github.com/arduino/arduino-modulino-mpy)
29+
2630

2731
## Connect the Modulino
2832

29-
Before programming it, you need to first connect your Modulino Buttons to your Arduino Nano ESP32. Follow the diagram below to connect your Modulino Buttons and Nano ESP32.
33+
Before we start programming, we will need to connect our Modulino Buttons to our Arduino board. For this we can follow the circuit diagram below:
3034

3135
![Circuit Diagram]()
3236

33-
## Code
37+
## Modulino Buttons Code Example
3438

35-
Copy the code below and run it in Arduino MicroPython labs connected to your Arduino Nano ESP32.
39+
Copy the code below and run it in Arduino MicroPython labs, while connected to our board.
3640

3741
```python
3842
from modulino import ModulinoButtons

content/micropython/03.micropython/modulinos/06.modulino-knob/modulino-knob.md

+14-11
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,41 @@
11
---
2-
32
title: 'Modulino Knob'
4-
description: 'Get started with using the Modulino Knob'
3+
description: 'Get started with the Modulino Knob using MicroPython'
54
author: 'Hannes Siebeneicher, Sebastian Romero'
65
hero_image: "./hero-banner.png"
7-
86
---
97

10-
This article will show you how to get started with the Modulino Knob, a rotating knob with a button.
8+
In this tutorial, we will get started with the Modulino Knob, a rotating knob with a button.
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).***
1111

1212
## Goals
1313

1414
The goals of this tutorial are:
1515

16-
- learn how to connect a Modulino to the Arduino Nano ESP32.
16+
- learn how to connect a Modulino to an Arduino board.
1717
- learn how to program the Modulino Knob.
1818

1919
## Hardware & Software Needed
2020

21-
- [MicroPython Labs](https://lab-micropython.arduino.cc/)
22-
- [Arduino Nano ESP32](https://store.arduino.cc/products/nano-esp32?queryID=undefined)
23-
- [Modulino MicroPython Package](https://github.com/arduino/arduino-modulino-mpy)
21+
For this tutorial, we will need the following hardware:
2422
- [Modulino Knob](https://store.arduino.cc/products/plug-and-make-kit)
2523
- [Arduino Nano to QWIIC Connector Carrier]()
24+
- [Arduino Nano ESP32](https://store.arduino.cc/products/nano-esp32?queryID=undefined) or [Arduino Nano RP2040 Connect](https://store.arduino.cc/en-se/products/arduino-nano-rp2040-connect)
25+
26+
We will also need the following software:
27+
- [MicroPython Labs](https://lab-micropython.arduino.cc/)
28+
- [Modulino MicroPython Package](https://github.com/arduino/arduino-modulino-mpy)
2629

2730
## Connect the Modulino
2831

29-
Before programming it, you need to first connect your Modulino Knob to your Arduino Nano ESP32. Follow the diagram below to connect your Modulino Knob and Nano ESP32.
32+
Before we start programming, we will need to connect our Modulino Knob to our Arduino board. For this we can follow the circuit diagram below:
3033

3134
![Circuit Diagram]()
3235

33-
## Code
36+
## Modulino Knob Code Example
3437

35-
Copy the code below and run it in Arduino MicroPython labs connected to your Arduino Nano ESP32.
38+
Copy the code below and run it in Arduino MicroPython labs, while connected to our board.
3639

3740
```python
3841
from modulino import ModulinoKnob

content/micropython/03.micropython/modulinos/07.modulino-movement/modulino-movement.md renamed to content/micropython/03.micropython/modulinos/07.modulino-thermo/modulino-thermo.md

+14-11
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,41 @@
11
---
2-
32
title: 'Modulino Thermo'
4-
description: 'Get started with using the Modulino Thermo'
3+
description: 'Get started with the Modulino Thermo using MicroPython'
54
author: 'Hannes Siebeneicher, Sebastian Romero'
65
hero_image: "./hero-banner.png"
7-
86
---
97

10-
This article will show you how to get started with the Modulino Thermo, reading surrounding temperature and humidity.
8+
In this tutorial, we will get started with the Modulino Thermo, reading surrounding temperature and humidity.
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).***
1111

1212
## Goals
1313

1414
The goals of this tutorial are:
1515

16-
- learn how to connect a Modulino to the Arduino Nano ESP32.
16+
- learn how to connect a Modulino to an Arduino board.
1717
- learn how to program the Modulino Thermo.
1818

1919
## Hardware & Software Needed
2020

21-
- [MicroPython Labs](https://lab-micropython.arduino.cc/)
22-
- [Arduino Nano ESP32](https://store.arduino.cc/products/nano-esp32?queryID=undefined)
23-
- [Modulino MicroPython Package](https://github.com/arduino/arduino-modulino-mpy)
21+
For this tutorial, we will need the following hardware:
2422
- [Modulino Thermo](https://store.arduino.cc/products/plug-and-make-kit)
2523
- [Arduino Nano to QWIIC Connector Carrier]()
24+
- [Arduino Nano ESP32](https://store.arduino.cc/products/nano-esp32?queryID=undefined) or [Arduino Nano RP2040 Connect](https://store.arduino.cc/en-se/products/arduino-nano-rp2040-connect)
25+
26+
We will also need the following software:
27+
- [MicroPython Labs](https://lab-micropython.arduino.cc/)
28+
- [Modulino MicroPython Package](https://github.com/arduino/arduino-modulino-mpy)
2629

2730
## Connect the Modulino
2831

29-
Before programming it, you need to first connect your Modulino Thermo to your Arduino Nano ESP32. Follow the diagram below to connect your Modulino Thermo and Nano ESP32.
32+
Before we start programming, we will need to connect our Modulino Thermo to our Arduino board. For this we can follow the circuit diagram below:
3033

3134
![Circuit Diagram]()
3235

33-
## Code
36+
## Modulino Thermo Code Example
3437

35-
Copy the code below and run it in Arduino MicroPython labs connected to your Arduino Nano ESP32.
38+
Copy the code below and run it in Arduino MicroPython labs, while connected to our board.
3639

3740
```python
3841
from modulino import ModulinoThermo

content/micropython/03.micropython/modulinos/08.modulino-thermo/modulino-movement.md renamed to content/micropython/03.micropython/modulinos/08.modulino-movement/modulino-movement.md

+13-8
Original file line numberDiff line numberDiff line change
@@ -7,32 +7,37 @@ hero_image: "./hero-banner.png"
77

88
---
99

10-
This article will show you how to get started with the Modulino Movement, measuring acceleration and positioning.
10+
In this tutorial, we will get started with the Modulino Movement, measuring acceleration and positioning.
11+
12+
***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).***
1113

1214
## Goals
1315

1416
The goals of this tutorial are:
1517

16-
- learn how to connect a Modulino to the Arduino Nano ESP32.
18+
- learn how to connect a Modulino to an Arduino board.
1719
- learn how to program the Modulino Movement.
1820

1921
## Hardware & Software Needed
2022

21-
- [MicroPython Labs](https://lab-micropython.arduino.cc/)
22-
- [Arduino Nano ESP32](https://store.arduino.cc/products/nano-esp32?queryID=undefined)
23-
- [Modulino MicroPython Package](https://github.com/arduino/arduino-modulino-mpy)
23+
For this tutorial, we will need the following hardware:
2424
- [Modulino Movement](https://store.arduino.cc/products/plug-and-make-kit)
2525
- [Arduino Nano to QWIIC Connector Carrier]()
26+
- [Arduino Nano ESP32](https://store.arduino.cc/products/nano-esp32?queryID=undefined) or [Arduino Nano RP2040 Connect](https://store.arduino.cc/en-se/products/arduino-nano-rp2040-connect)
27+
28+
We will also need the following software:
29+
- [MicroPython Labs](https://lab-micropython.arduino.cc/)
30+
- [Modulino MicroPython Package](https://github.com/arduino/arduino-modulino-mpy)
2631

2732
## Connect the Modulino
2833

29-
Before programming it, you need to first connect your Modulino Movement to your Arduino Nano ESP32. Follow the diagram below to connect your Modulino Movement and Nano ESP32.
34+
Before we start programming, we will need to connect our Modulino Movement to our Arduino board. For this we can follow the circuit diagram below:
3035

3136
![Circuit Diagram]()
3237

33-
## Code
38+
## Modulino Movement Code Example
3439

35-
Copy the code below and run it in Arduino MicroPython labs connected to your Arduino Nano ESP32.
40+
Copy the code below and run it in Arduino MicroPython labs, while connected to our board.
3641

3742
```python
3843
from modulino import ModulinoMovement

0 commit comments

Comments
 (0)