mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
16 lines
246 B
Python
16 lines
246 B
Python
import PikaStdLib
|
|
import machine
|
|
|
|
time = machine.Time()
|
|
uart = machine.UART()
|
|
uart.setId(1)
|
|
uart.setBaudRate(115200)
|
|
uart.enable()
|
|
|
|
while True:
|
|
time.sleep_ms(500)
|
|
readBuff = uart.read(2)
|
|
print('read 2 char:')
|
|
print(readBuff)
|
|
|