Files
J1B3-Sensor-boxes/arduino/node-code/node-code-final/nodeCodeFinal.ino
2024-03-13 15:47:42 +01:00

15 lines
225 B
C++

#include <nodeCodeHeader.h>
nodeReadings esp32Node();
void setup() {
// put your setup code here, to run once:
esp32Node.setup();
}
void loop() {
// put your main code here, to run repeatedly:
esp32Node.loop();
}