You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in order to benefit the power of TinyConsole with a telnet connection instead of a Serial connection.
After making ESPTelnetStream public Stream, this works pretty well, except that I have to force TinyConsole to use escape sequences and this is a little slow (probably related to TinyConsole.
The TinyConsole example works very well (drawing a colored spiral on the telnet terminal) with very few changes.
Best regards
The text was updated successfully, but these errors were encountered:
$ git status
On branch 45-esptelnetstream-private-of-stream
Your branch is up to date with 'origin/45-esptelnetstream-private-of-stream'.
nothing to commit, working tree clean
As you see the COM4 TinyConsole switched to telnet smoothly when onTelnetConnected message was sent by your lib!
Great !
The message "You are not using a real terminal" made TinyConsole to switch in basic mode (no ansi escapes). I had to force TinyConsole that telnet is a ansi term. This is probably because my telnet client does not sends what TinyConsole expects, and is not related to ESPTelnet (probably to TinyConsole).
Hello
ESPTelnetStream inherits privately from Stream.
I don't find any reason for this.
Is it possible to replace the inheritance with:
(note: tried on clone master from github since the 2.1.0 is not yeat deployed)
The reason for this is that I want to use
in order to benefit the power of TinyConsole with a telnet connection instead of a Serial connection.
After making ESPTelnetStream public Stream, this works pretty well, except that I have to force TinyConsole to use escape sequences and this is a little slow (probably related to TinyConsole.
The TinyConsole example works very well (drawing a colored spiral on the telnet terminal) with very few changes.
Best regards
The text was updated successfully, but these errors were encountered: