摘要:
ESP32+作为WiFi热点+接收并返回数据 ESP32代码 # ESP32 作为AP # 作为服务器 接收数据 并echo # ESP32 作为AP 即wifi热点 import network import utime # 配置ESP32为AP模式 ssid = 'ESP32_AP' passw 阅读全文
摘要:
多线程编程举例 1、无参数 2、有参数,元组方式传递参数 import _thread import time def testThread(): while True: print("Hello from thread") time.sleep(2) def testParThread(arg1, 阅读全文