Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望 ESP8266 WiFi 模块在通过 UART 接收到命令后自行重置。可以使用哪个代码来做到这一点?是否有像 reset() 这样的 SDK 函数?
我正在使用 SMING 框架
为了重置设备,您应该调用System.restart(),它记录在SystemClass
System.restart()
例如示例Basic_rBoot调用它。