私はArduinoで小さなTelnetクライアントを書いています。次のコードで非アクティブ化した後、Telnet クライアントのラインモードを再アクティブ化するにはどうすればよいですか?
client.write(255); // IAC
client.write(251); // WILL
client.write(1); // ECHO
client.write(255); // IAC
client.write(251); // WILL
client.write(3); // suppress go ahead
client.write(255); // IAC
client.write(252); // WONT
client.write(34); // LINEMODE
パスワード入力用。
逆のコマンドを試しましたが、うまくいきません。