Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Spell check
  • Loading branch information
pedromsousalima committed Jan 30, 2025
commit 09d0b523aa47c957afd05236fecef0518746f49f
2 changes: 1 addition & 1 deletion content/micropython/06.communication/uart/uart.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ while True:
uart.write("pong\n")
buffer = "" # Clear the buffer
```
Now copy the following code into your `main.py` file and run it on the board you designated as "secondary". In this case we are exanding the secondary board to be able to write via UART too:
Now copy the following code into your `main.py` file and run it on the board you designated as "secondary". In this case we are expanding the secondary board to be able to write via UART too:

```python
from machine import UART
Expand Down
Loading