14 lines
245 B
C++
14 lines
245 B
C++
#ifndef websockerts_h
|
|
#define websockerts_h
|
|
|
|
#include "Arduino.h"
|
|
#include "websocketsHeader.h"
|
|
|
|
class websockets {
|
|
public:
|
|
websockets();
|
|
void hexdump(const void *mem, uint32_t len, uint8_t cols = 16);
|
|
private:
|
|
};
|
|
|
|
#endif |