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,21 @@
#ifndef nodeReading_h
#define nodeReading_h
#include "Arduino.h"
#include "headerFile.h"
class nodeReadings {
public:
nodeReadings();
void setup();
void loop();
void resetValues();
void update();
private:
};
#endif