Micropython学习交流群 学习QQ群:786510434 提供多种固件下载和学习交流。
Micropython-扇贝物联 QQ群:31324057 扇贝物联是一个让你与智能设备沟通更方便的物联网云平台
Micropython学习交流群 学习QQ群:468985481 学习交流ESP8266、ESP32、ESP8285、wifi模块开发交流、物联网。
Micropython老哥俩的IT农场分享QQ群:929132891 为喜欢科创制作的小白们分享一些自制的计算机软硬件免费公益课程,由两位多年从事IT研发的中年大叔发起。
from machine import Pin, UART uart1 = UART(1, baudrate=115200, tx=17, rx=18) #uart1.init(115200, bits=8, parity=None, stop=1) def test(): import time for i in range(50): time.sleep(0.1) uart1.write('hello world!') print(uart1.read(uart1.any())) import os os.dupterm(uart1) print(os)
代码2:
from machine import UART, Pin import time uart1 = UART(1, baudrate=9600, tx=Pin(8), rx=Pin(9)) uart0 = UART(0, baudrate=9600, tx=Pin(0), rx=Pin(1)) txData = b'hello world\n\r' uart1.write(txData) time.sleep(0.1) rxData = bytes() while uart0.any() > 0: rxData += uart0.read(1) print(rxData.decode('utf-8'))
Copyright © 2014 ESP56.com All Rights Reserved
执行时间: 0.0088388919830322 seconds