20 lines
341 B
C++
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();
|
|
}
|