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.
SMING フレームワークで ESP8266 WiFi モジュールを使用しています。TCP サーバーを停止したいと考えています。これが私が TCP サーバーを起動した方法です。
tcpServer.listen(8018);
それを止めるコードは何ですか?
次のことを試して、状況で機能するかどうかを確認できます。
if (tcpServer) delete tcpServer;
お役に立てれば。