You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
187 B
12 lines
187 B
from pyb import UART
|
|
|
|
uart = UART(1)
|
|
uart = UART(1, 9600)
|
|
uart = UART(1, 9600, bits=8, stop=1, parity=None)
|
|
print(uart)
|
|
|
|
uart.init(1200)
|
|
print(uart)
|
|
|
|
uart.any()
|
|
uart.send(1, timeout=500)
|
|
|