0

I would like the ESP8266 WiFi module to reset itself after receiving a command via UART. Which code can one use to do that? Are there SDK functions like reset()?

I am using the SMING framework

mpromonet
  • 11,326
  • 43
  • 62
  • 91
guagay_wk
  • 26,337
  • 54
  • 186
  • 295

1 Answers1

1

In order to reset the device, you should call System.restart(), it is documented in SystemClass

For instance the sample Basic_rBoot call it.

mpromonet
  • 11,326
  • 43
  • 62
  • 91