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