Merge pull request #2011 from openmv/nicla_uart_pin

scripts/examples: Fix Nicla UART example.
This commit is contained in:
Ibrahim Abdelkader 2023-11-07 19:44:12 +02:00 committed by GitHub
commit f67ca6390b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@ import time
from pyb import UART
# Init UART object.
uart = UART(4, 19200)
uart = UART("LP1", 19200)
while True:
uart.write("Hello World!\r")