ESPTelnet Versions Save

ESP library that allows you to setup a telnet server for debugging.

2.2.1

3 months ago
  • added getClient() function to the base class
  • changed order of macros in DebugMacros.h to avoid an error

2.2

4 months ago
  • merged pull request #56 that fixes issues #54 and #52 submitted by Laxilef
    • added buffered write() function to ESPTelnetBaseas suggested by Laxilef
    • Losing client connection will no longer freeze the server
  • fixed bug in connectToWiFi() helper function

2.1.2

11 months ago
  • refactored ESPTelnetBase, simplified the main loop()
  • updated ESPTelnet, simplified printf()
  • updated ESPTelnet, print() and println() now uses templates
  • updated ESPTelnetStream example

2.1.1

1 year ago
  • made ESPStream's inheritance of Stream public as requested in #45

2.1.0

1 year ago
  • simplified and removed parameter from isClientConnected(TCPClient &client) to isConnected() (BREAKING CHANGE)
  • the loop()now checks periodically (every second) whether the client "sliently" disconnected, interval for this can be custonmized
  • fixed bug in the main loop() that stopped processing text input
  • removed compiler warnings
  • added ANSI escape code library
  • added print functions as suggested in #37 by Jan Heuer
  • added printf() altazorr as suggested in #35 by Bogdan Symchych
  • refactored and beautified code

2.0.0

1 year ago

1.4.0

1 year ago
  • added Autoconnect example as suggested in PR #13
  • updated loop() to remove compiler warning as mentioned in #26
  • added bool checkConnection parameter to begin() to allow to bypass WiFi detection, as requested in #27
  • added print() and println() for different bases and Printable as suggested in #21

1.3.1

2 years ago

see changelog for more details

1.3.0

2 years ago
  • Added a line mode toggle
  • Changed String arguments to const String & and WiFiClient argument to WiFiClient & to avoid copies
  • You can now define a custom port via the begin(uint16_t port) function
  • Added a clientDisconnect() function

1.2.2

2 years ago
  • Added code to manually flush the client upon (re-)connection
  • Added private helper method _isIPSet()