Files
espurna/code/espurna/telnet.h
2021-12-08 13:48:44 +03:00

19 lines
306 B
C

/*
TELNET MODULE
Copyright (C) 2017-2019 by Xose Pérez <xose dot perez at gmail dot com>
*/
#pragma once
#include <Arduino.h>
uint16_t telnetPort();
bool telnetConnected();
unsigned char telnetWrite(unsigned char ch);
bool telnetDebugSend(const char* prefix, const char* data);
void telnetSetup();