Releases: LennartHennigs/ESPTelnet
Releases · LennartHennigs/ESPTelnet
2.2.2
2.2.1
- added
getClient()
function to the base class - changed order of macros in
DebugMacros.h
to avoid an error
2.2
2.1.2
- refactored
ESPTelnetBase
, simplified the mainloop()
- updated
ESPTelnet
, simplifiedprintf()
- updated
ESPTelnet
,print()
andprintln()
now uses templates - updated
ESPTelnetStream
example
2.1.1
2.1.0
- simplified and removed parameter from
isClientConnected(TCPClient &client)
toisConnected()
(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
- added abstract base class and refactored code
- implemented
ESPTelnet
and a separate stream classESPTelnetStream
- 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
fixed bug in _isSet (#19)
see changelog for more details
1.3.0
- Added a line mode toggle
- Changed
String
arguments toconst String &
andWiFiClient
argument toWiFiClient &
to avoid copies - You can now define a custom port via the
begin(uint16_t port)
function - Added a
clientDisconnect()
function