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.
14 lines
245 B
14 lines
245 B
from pyb import UART
|
|
|
|
uart = UART(1)
|
|
uart = UART(1, 9600)
|
|
uart = UART(1, 9600, bits=8, parity=None, stop=1)
|
|
print(uart)
|
|
|
|
uart.init(1200)
|
|
print(uart)
|
|
|
|
print(uart.any())
|
|
print(uart.write('123'))
|
|
print(uart.write(b'abcd'))
|
|
print(uart.writechar(1))
|
|
|