Added the header files to for changing the arduino code to OOP

This commit is contained in:
Dano van den Bosch
2024-03-13 15:47:42 +01:00
parent 25de52c54b
commit c4880ce0e2
4 changed files with 85 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#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();
}