ESPTelnet
1.3.1
|
ESP8266/ESP32 library that allows you to setup a telnet server.
Use this library to set up a the telnet server to communicate status messages or debug / error log output. This is especially useful when you don't have a serial connection to the ESP.
It has been tested with ESP8266 and ESP32 devices.
To see the latest changes to the library please take a look at the Changelog.
Definition
begin()
and stop()
to start or stop the telnet server.begin()
functiongetIP()
to get the connected client's IP address.disconnectClient()
Callback Handlers
void onConnect(CallbackFunction f);
void onConnectionAttempt(CallbackFunction f);
void onReconnect(CallbackFunction f);
void onDisconnect(CallbackFunction f);
void onInputReceived(CallbackFunction f);
onInputReceived()
.Output and Input
print()
and println()
you can output text on the telnet server.onInputReceived()
.setlineMode(false)
.Using it to Debug Code
To enable debugging you need to set DEBUG_ON
#define DEBUG_USE_SERIAL 1 #define DEBUG_USE_TELNET 1
bool begin(); void loop(); void stop();
void print(String str); void print(char c); void println(String str); void println(char c); void println();
String getIP() const; String getLastAttemptIP() const;
void onConnect(CallbackFunction f); void onConnectionAttempt(CallbackFunction f); void onReconnect(CallbackFunction f); void onDisconnect(CallbackFunction f); void onInputReceived(CallbackFunction f);
void disconnectClient(); ```
Open the Arduino IDE choose "Sketch > Include Library" and search for "ESPTelnet". Or download the ZIP archive (https://github.com/lennarthennigs/ESPTelnet/zipball/master), and choose "Sketch > Include Library > Add .ZIP Library..." and select the downloaded file.
MIT License
Copyright (c) 2018-2021 Lennart Hennigs
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.