#ifndef websockerts_h #define websockerts_h #include #include "Arduino.h" #define USE_SERIAL Serial // WiFiMulti WiFiMulti; class websockets { public: websockets(); void hexdump(const void *mem, uint32_t len, uint8_t cols = 16); void websocketSetup(); void loop(); void webSocketEvent(WStype_t type, uint8_t * payload, size_t length); private: }; #endif