You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
13 lines
187 B
Python
13 lines
187 B
Python
|
|
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)
|