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