From 27f892bbc9a4cf93668b56a400fb609ac7c383e3 Mon Sep 17 00:00:00 2001 From: Hannes Siebeneicher Date: Mon, 16 Dec 2024 15:51:35 +0100 Subject: [PATCH 1/2] add asset reference --- .../05.modulinos/03.modulino-pixels/modulino-pixels.md | 2 +- .../05.modulinos/04.modulino-buzzer/modulino-buzzer.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/micropython/05.modulinos/03.modulino-pixels/modulino-pixels.md b/content/micropython/05.modulinos/03.modulino-pixels/modulino-pixels.md index 89d0535142..df05bfe9f8 100644 --- a/content/micropython/05.modulinos/03.modulino-pixels/modulino-pixels.md +++ b/content/micropython/05.modulinos/03.modulino-pixels/modulino-pixels.md @@ -94,4 +94,4 @@ pixels.show() The Modulino Pixels is a series of addressable RGB LEDs. These can be controlled by setting the brightness or the color of each LED. -![LED Animation]() \ No newline at end of file +![LED Animation](./assets/how-it-works.gif) \ No newline at end of file diff --git a/content/micropython/05.modulinos/04.modulino-buzzer/modulino-buzzer.md b/content/micropython/05.modulinos/04.modulino-buzzer/modulino-buzzer.md index 1c51f5e00b..30c3cebd6f 100644 --- a/content/micropython/05.modulinos/04.modulino-buzzer/modulino-buzzer.md +++ b/content/micropython/05.modulinos/04.modulino-buzzer/modulino-buzzer.md @@ -99,4 +99,4 @@ The Modulino Buzzer is a tiny speaker that can output sound waves. 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. -![How it wors]() \ No newline at end of file +![How it wors](./assets/how-it-works.gif) \ No newline at end of file From f5d94b4c5299ec1590ce72168e053f265ff7cad9 Mon Sep 17 00:00:00 2001 From: Hannes Siebeneicher Date: Mon, 16 Dec 2024 16:13:25 +0100 Subject: [PATCH 2/2] fix typos --- .../micropython/02.environment/02.file-system/file-system.md | 2 +- content/micropython/03.micropython/05.communication/i2c/i2c.md | 2 +- .../05.modulinos/04.modulino-buzzer/modulino-buzzer.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/content/micropython/02.environment/02.file-system/file-system.md b/content/micropython/02.environment/02.file-system/file-system.md index f9893f1fd2..04e090bb53 100644 --- a/content/micropython/02.environment/02.file-system/file-system.md +++ b/content/micropython/02.environment/02.file-system/file-system.md @@ -1,6 +1,6 @@ --- title: 'File System' -description: 'Learn how to use the File Sytem in MicroPython.' +description: 'Learn how to use the File System in MicroPython.' author: 'Pedro Lima' tags: [MicroPython, File System] --- diff --git a/content/micropython/03.micropython/05.communication/i2c/i2c.md b/content/micropython/03.micropython/05.communication/i2c/i2c.md index 0ca7f6e389..c2cd847d60 100644 --- a/content/micropython/03.micropython/05.communication/i2c/i2c.md +++ b/content/micropython/03.micropython/05.communication/i2c/i2c.md @@ -13,7 +13,7 @@ I2C communication relies on two wires: - **SDA (Serial Data):** Transfers data between devices. - **SCL (Serial Clock):** Synchronizes data transmission. -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). +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). ![I2C Diagram](assets/i2c.png) diff --git a/content/micropython/05.modulinos/04.modulino-buzzer/modulino-buzzer.md b/content/micropython/05.modulinos/04.modulino-buzzer/modulino-buzzer.md index 30c3cebd6f..56fe8262d1 100644 --- a/content/micropython/05.modulinos/04.modulino-buzzer/modulino-buzzer.md +++ b/content/micropython/05.modulinos/04.modulino-buzzer/modulino-buzzer.md @@ -99,4 +99,4 @@ The Modulino Buzzer is a tiny speaker that can output sound waves. 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. -![How it wors](./assets/how-it-works.gif) \ No newline at end of file +![How it works](./assets/how-it-works.gif) \ No newline at end of file