ac-real-io/acrealio/Ddr.h

23 lines
251 B
C
Raw Permalink Normal View History

#ifndef DDR_H
#define DDR_H
#include "Arduino.h"
#include "Node.h"
class Ddr: public Node
{
public:
Ddr(); //contructor
void init();
short processRequest(byte* request, byte* sendBuff);
void update();
2017-01-25 15:59:19 -05:00
public:
private:
};
2017-01-25 15:59:19 -05:00
#endif