Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hannes7eicher/modulino assets #2329

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -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]
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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]()
![LED Animation](./assets/how-it-works.gif)
Original file line number Diff line number Diff line change
Expand Up @@ -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]()
![How it works](./assets/how-it-works.gif)
Loading