13 lines
215 B
C++
13 lines
215 B
C++
#ifndef nodeClass_h
|
|
#define nodeClass_h
|
|
#include "Arduino.h"
|
|
class nodeReadings {
|
|
|
|
private:
|
|
public:
|
|
nodeReadings();
|
|
void readDht();
|
|
void printNode();
|
|
// class code goes here
|
|
};
|
|
#endif |