Skip to content

Commit 8388ded

Browse files
authored
Merge pull request #2329 from arduino/hannes7eicher/Modulino-Assets
Hannes7eicher/modulino assets
2 parents 730ba7d + f5d94b4 commit 8388ded

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

content/micropython/02.environment/02.file-system/file-system.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: 'File System'
3-
description: 'Learn how to use the File Sytem in MicroPython.'
3+
description: 'Learn how to use the File System in MicroPython.'
44
author: 'Pedro Lima'
55
tags: [MicroPython, File System]
66
---

content/micropython/03.micropython/05.communication/i2c/i2c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ I2C communication relies on two wires:
1313
- **SDA (Serial Data):** Transfers data between devices.
1414
- **SCL (Serial Clock):** Synchronizes data transmission.
1515

16-
Each device on an I2C bus has a unique address, allowing the controller to communicate directly with a specific device. This capability makes it possible to connect up to 128 devices on the same two wires (128 is the maximum number of different adresses you can have as the adress is a 7 bit value and you can only express 128 unique values using 7 bits).
16+
Each device on an I2C bus has a unique address, allowing the controller to communicate directly with a specific device. This capability makes it possible to connect up to 128 devices on the same two wires (128 is the maximum number of different addresses you can have as the address is a 7 bit value and you can only express 128 unique values using 7 bits).
1717

1818
![I2C Diagram](assets/i2c.png)
1919

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,4 @@ pixels.show()
9494

9595
The Modulino Pixels is a series of addressable RGB LEDs. These can be controlled by setting the brightness or the color of each LED.
9696

97-
![LED Animation]()
97+
![LED Animation](./assets/how-it-works.gif)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,4 @@ The Modulino Buzzer is a tiny speaker that can output sound waves.
9999

100100
The speaker is called a "piezo", which comes from piezoelectricity. When you apply voltage to the speaker with a specific frequency, you generate a specific sound. Changing the frequency will change the tone of the speaker.
101101

102-
![How it wors]()
102+
![How it works](./assets/how-it-works.gif)

0 commit comments

Comments
 (0)