Files
J1B3-Sensor-boxes/arduino/node-code/nodeCodeFinal/nodeCodeFinal.ino
2024-03-19 12:17:39 +01:00

20 lines
341 B
C++

#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();
}