save state for my oop in aduino

This commit is contained in:
Dano van den Bosch
2024-03-19 12:17:39 +01:00
parent ac7d97c890
commit a8f6491736
8 changed files with 92 additions and 17 deletions

View File

@@ -0,0 +1,14 @@
#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