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.
UART 経由でコマンドを受信した後、ESP8266 WiFi モジュールが自身をリセットするようにしたいと考えています。それを行うためにどのコードを使用できますか? reset() のような SDK 関数はありますか?
SMING フレームワークを使用しています
デバイスをリセットするには、 を呼び出す必要があります。SystemClassSystem.restart()に記載されています。
System.restart()
たとえば、サンプルのBasic_rBootはそれを呼び出します。