mirror of
https://github.com/xoseperez/espurna.git
synced 2026-03-06 08:24:27 +01:00
19 lines
306 B
C
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();
|
|
|