1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-23 08:06:13 +01:00
CommandStation-EX/WifiInterface.h

21 lines
398 B
C
Raw Normal View History

#ifndef WifiInterface_h
#define WifiInterface_h
#include "DCCEXParser.h"
class WifiInterface {
public:
static void setup();
static void loop(DCCEXParser & parser);
private:
static bool setup2();
static bool checkForOK(const int timeout, char * search);
static bool connected;
static const byte MAX_BUFFER=64;
static byte inboundBuffer[MAX_BUFFER];
};
#endif