Skip to content

Releases: LennartHennigs/ESPTelnet

2.2.2

03 Oct 07:20
Compare
Choose a tag to compare
  • removed ESP8266WiFi.h include in ESPTelnetBase.h
  • Added option to change the newLine character via getNewlineCharacter() and setNewlineCharacter() as suggest by Roy in #69

2.2.1

17 Feb 21:58
Compare
Choose a tag to compare
  • added getClient() function to the base class
  • changed order of macros in DebugMacros.h to avoid an error

2.2

08 Jan 17:11
Compare
Choose a tag to compare
2.2
  • 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

26 Jun 04:37
Compare
Choose a tag to compare
  • refactored ESPTelnetBase, simplified the main loop()
  • updated ESPTelnet, simplified printf()
  • updated ESPTelnet, print() and println() now uses templates
  • updated ESPTelnetStream example

2.1.1

13 Mar 18:03
47822e1
Compare
Choose a tag to compare
  • made ESPStream's inheritance of Stream public as requested in #45

2.1.0

12 Mar 08:42
Compare
Choose a tag to compare
  • 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

20 Nov 23:11
Compare
Choose a tag to compare
  • added abstract base class and refactored code
  • implemented ESPTelnet and a separate stream class ESPTelnetStream
  • added [ESPTelnetStreamExample (https://github.com/LennartHennigs/ESPTelnet/blob/master/examples/TelnetStreamExample/TelnetStreamExample.ino)
  • updated README.md and added Stream descriptions
  • fixed bug #30

1.4.0

03 Nov 19:22
Compare
Choose a tag to compare
  • 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

fixed bug in _isSet (#19)

15 Apr 07:26
Compare
Choose a tag to compare

see changelog for more details

1.3.0

03 Mar 19:28
Compare
Choose a tag to compare
  • 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