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,19 @@
#include <nodeCodeHeader.h>
#include <websockets.h>
nodeReadings esp32Node();
websockets webSocket();
void setup()
{
// put your setup code here, to run once:
esp32Node.setup();
webSocket.websocketSetup();
esp32Node.resetValues();
}
void loop()
{
// put your main code here, to run repeatedly:
esp32Node.loop();
}