Skip to content

Commit 379fef0

Browse files
Apply suggestions from code review
Co-authored-by: BenjaminDannegard <[email protected]>
1 parent 4de89d3 commit 379fef0

File tree

1 file changed

+1
-4
lines changed
  • content/micropython/06.communication/uart

1 file changed

+1
-4
lines changed

content/micropython/06.communication/uart/uart.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Serial communication (UART)
3-
description: Learn how to use UART on Micropython
3+
description: Learn how to use UART with Micropython
44
author: Pedro Sousa Lima
55
---
66

@@ -15,9 +15,6 @@ UART communication relies on:
1515
Unlike other protocols like I2C or SPI, UART is asynchronous, meaning it doesn’t use a clock line. Instead, the sender and receiver agree on a common data rate (baud rate), such as 9600 bits per second.
1616

1717
Each device directly connects TX to RX and RX to TX.
18-
19-
20-
2118
### Key Features of UART
2219

2320
1. **Simple Point-to-Point Communication:** Ideal for connecting two devices.

0 commit comments

Comments
 (0)